From eaaa344267103084a6b6c3bb31811189c2fd7b0f Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Sun, 25 Jun 2023 08:28:50 -0700 Subject: Add new "smart-card" transport --- packages/typescript-types/src/index.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'packages/typescript-types') 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 -- cgit v1.2.3