diff options
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r-- | packages/typescript-types/src/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index 772184f..bcecc64 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -47,7 +47,7 @@ export interface AttestationCredential extends PublicKeyCredential { /** * A slightly-modified AttestationCredential to simplify working with ArrayBuffers that - * are base64url-encoded in the browser so that they can be sent as JSON to the server. + * are Base64URL-encoded in the browser so that they can be sent as JSON to the server. */ export interface AttestationCredentialJSON extends Omit<AttestationCredential, 'response' | 'rawId' | 'getClientExtensionResults'> { @@ -64,7 +64,7 @@ export interface AssertionCredential extends PublicKeyCredential { /** * A slightly-modified AssertionCredential to simplify working with ArrayBuffers that - * are base64url-encoded in the browser so that they can be sent as JSON to the server. + * are Base64URL-encoded in the browser so that they can be sent as JSON to the server. */ export interface AssertionCredentialJSON extends Omit<AssertionCredential, 'response' | 'rawId' | 'getClientExtensionResults'> { @@ -108,6 +108,6 @@ export type AuthenticatorDevice = { }; /** - * An attempt to communicate that this isn't just any string, but a base64url-encoded string + * An attempt to communicate that this isn't just any string, but a Base64URL-encoded string */ export type Base64URLString = string; |