summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-07-01 08:23:31 -0700
committerMatthew Miller <matthew@millerti.me>2022-07-01 08:23:31 -0700
commita0f1a031160584d576fdc7fe16108fa6e3305247 (patch)
tree86e47bf77ff5bb4abcaa059b6cc16331ee271d5f /packages/typescript-types/src
parente74272c45134e4c20c001e488e5566ae9cf36c4f (diff)
Properly type isConditionalMediationAvailable
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 b0c8d2c..ce5d799 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -168,7 +168,7 @@ export interface PublicKeyCredentialDescriptorFuture extends Omit<PublicKeyCrede
*/
export interface PublicKeyCredentialFuture extends PublicKeyCredential {
// See https://github.com/w3c/webauthn/issues/1745
- isConditionalMediationAvailable(): Promise<boolean>;
+ isConditionalMediationAvailable?(): Promise<boolean>;
}
/**