summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-11-17 21:37:52 -0800
committerMatthew Miller <matthew@millerti.me>2022-11-17 21:37:52 -0800
commit2cdf440c77c104ea3a7cbe2034e02698c3f31dd7 (patch)
tree040b97ff46698e8a9f7c16a896f91eb457660424 /packages/typescript-types
parent2d122b488613be7a913f4589d07b9ce4b4037b69 (diff)
Update to TypeScript 4.9
Diffstat (limited to 'packages/typescript-types')
-rw-r--r--packages/typescript-types/src/index.ts7
1 files changed, 1 insertions, 6 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index b56842f..be935a4 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -142,10 +142,7 @@ export type Base64URLString = string;
* Properties marked optional are not supported in all browsers.
*/
export interface AuthenticatorAttestationResponseFuture extends AuthenticatorAttestationResponse {
- getTransports?: () => AuthenticatorTransportFuture[];
- getAuthenticatorData?: () => ArrayBuffer;
- getPublicKey?: () => ArrayBuffer;
- getPublicKeyAlgorithm?: () => COSEAlgorithmIdentifier[];
+ getTransports: () => AuthenticatorTransportFuture[];
}
/**
@@ -171,8 +168,6 @@ export interface PublicKeyCredentialDescriptorFuture
export interface PublicKeyCredentialFuture extends PublicKeyCredential {
// See https://github.com/w3c/webauthn/issues/1745
isConditionalMediationAvailable?(): Promise<boolean>;
- // See https://w3c.github.io/webauthn/#dom-publickeycredential-authenticatorattachment
- authenticatorAttachment?: AuthenticatorAttachment;
}
/**