summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-06-25 08:28:50 -0700
committerMatthew Miller <matthew@millerti.me>2023-06-25 08:28:50 -0700
commiteaaa344267103084a6b6c3bb31811189c2fd7b0f (patch)
tree64356206cb894a9fa4a7b6172f85b3f032fea172 /packages/typescript-types/src
parent9757b8172d8d025eade46bd62be0e6c3c2216ea3 (diff)
Add new "smart-card" transport
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r--packages/typescript-types/src/index.ts10
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index b8b1394..8435241 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -180,7 +180,15 @@ 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' | 'hybrid';
+export type AuthenticatorTransportFuture =
+ 'ble'
+ | 'cable'
+ | 'hybrid'
+ | 'internal'
+ | 'nfc'
+ | 'smart-card'
+ | 'usb'
+ ;
/**
* A super class of TypeScript's `PublicKeyCredentialDescriptor` that knows about the latest