summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-05-18 16:19:53 -0700
committerMatthew Miller <matthew@millerti.me>2022-05-18 16:19:53 -0700
commit03da18fac7b3a9c6c1de0468469bb3624af3f0b3 (patch)
tree726ec49874a77b861a2e221aa05f915944f2f006 /packages/typescript-types/src
parentf51a8b528f5cea10aa181f6112928f968b3c14ca (diff)
Point PublicKeyCredentialDescriptor to "Future"
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r--packages/typescript-types/src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index c3f843c..b4bafc0 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -42,7 +42,7 @@ export interface PublicKeyCredentialRequestOptionsJSON
}
export interface PublicKeyCredentialDescriptorJSON
- extends Omit<PublicKeyCredentialDescriptor, 'id' | 'transports'> {
+ extends Omit<PublicKeyCredentialDescriptorFuture, 'id' | 'transports'> {
id: Base64URLString;
transports?: AuthenticatorTransportFuture[];
}