diff options
author | Matthew Miller <matthew@millerti.me> | 2022-07-04 09:24:23 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-07-04 09:24:23 -0700 |
commit | 90fc58ba86f6281b2e1ed0d9b5630a25830dbcb0 (patch) | |
tree | 90d89dd285a63fc9ea3e24ec3eb87979b50dfeac /packages/typescript-types/src | |
parent | e106570e8d09edcee927f1e2502c90b1a9d1ac40 (diff) |
Add new hybrid transport
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r-- | packages/typescript-types/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index 0fc1a53..80be2c5 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -153,7 +153,7 @@ export interface AuthenticatorAttestationResponseFuture extends AuthenticatorAtt * transports. Should eventually be replaced by TypeScript's when TypeScript gets updated to * know about it (sometime after 4.6.3) */ -export type AuthenticatorTransportFuture = "ble" | "internal" | "nfc" | "usb" | "cable"; +export type AuthenticatorTransportFuture = "ble" | "internal" | "nfc" | "usb" | "cable" | "hybrid"; /** * A super class of TypeScript's `PublicKeyCredentialDescriptor` that knows about the latest |