diff options
author | Matthew Miller <matthew@millerti.me> | 2022-11-17 21:37:52 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-11-17 21:37:52 -0800 |
commit | 2cdf440c77c104ea3a7cbe2034e02698c3f31dd7 (patch) | |
tree | 040b97ff46698e8a9f7c16a896f91eb457660424 /packages/typescript-types | |
parent | 2d122b488613be7a913f4589d07b9ce4b4037b69 (diff) |
Update to TypeScript 4.9
Diffstat (limited to 'packages/typescript-types')
-rw-r--r-- | packages/typescript-types/src/index.ts | 7 |
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; } /** |