diff options
Diffstat (limited to 'packages/server/src/helpers/decodeClientDataJSON.ts')
-rw-r--r-- | packages/server/src/helpers/decodeClientDataJSON.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/helpers/decodeClientDataJSON.ts b/packages/server/src/helpers/decodeClientDataJSON.ts index fa09181..645a09f 100644 --- a/packages/server/src/helpers/decodeClientDataJSON.ts +++ b/packages/server/src/helpers/decodeClientDataJSON.ts @@ -1,4 +1,4 @@ -import { isoBase64URL } from "./iso/index.ts"; +import { isoBase64URL } from './iso/index.ts'; /** * Decode an authenticator's base64url-encoded clientDataJSON to JSON @@ -17,7 +17,7 @@ export type ClientDataJSON = { crossOrigin?: boolean; tokenBinding?: { id?: string; - status: "present" | "supported" | "not-supported"; + status: 'present' | 'supported' | 'not-supported'; }; }; |