diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/types.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types.ts b/src/types.ts index b3d7d60..f3993da 100644 --- a/src/types.ts +++ b/src/types.ts @@ -13,8 +13,8 @@ export type AssertionCredentials = { export interface EncodedAuthenticatorAttestationResponse extends Omit< AuthenticatorAttestationResponse, 'clientDataJSON' | 'attestationObject' > { - clientDataJSON: string, - attestationObject: string; + base64ClientDataJSON: string, + base64AttestationObject: string; } export enum ATTESTATION_FORMATS { |