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 88dd3d4..bb878dc 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,6 +17,6 @@ export type ClientDataJSON = { crossOrigin?: boolean; tokenBinding?: { id?: string; - status: 'present' | 'supported' | 'not-supported'; + status: "present" | "supported" | "not-supported"; }; }; |