summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-10-05 02:26:24 -0700
committerMatthew Miller <matthew@millerti.me>2020-10-05 02:26:24 -0700
commit27b07d7ed71eac4b295a9979390c43167b8b8dfb (patch)
tree6ff9414c6b9e5cef679807b1b0b0b7e94671a84f
parent0b049415d399fdf799a6dc135b73d03fac7a5fba (diff)
Add `transports` to AttestationCredentialJSON
-rw-r--r--packages/typescript-types/src/index.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index f8f74fa..df4da30 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -49,6 +49,7 @@ export interface AttestationCredentialJSON
extends Omit<AttestationCredential, 'response' | 'rawId' | 'getClientExtensionResults'> {
rawId: Base64URLString;
response: AuthenticatorAttestationResponseJSON;
+ transports?: AuthenticatorTransport[];
}
/**