summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-05-25 23:26:40 -0700
committerMatthew Miller <matthew@millerti.me>2020-05-25 23:26:40 -0700
commit916087c78ff525fbdf3a37e13c40276a3cf2d703 (patch)
treef00eae092493d3c286ac1ec47368467b9b154c71 /packages/typescript-types
parent4566757cfc71683040f455c37039ed7371ad7ff1 (diff)
Add excludeCredentials to attestation options type
Diffstat (limited to 'packages/typescript-types')
-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 3e52a5d..353623e 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -28,6 +28,7 @@ export type PublicKeyCredentialCreationOptionsJSON = {
];
timeout?: number;
attestation: 'direct' | 'indirect';
+ excludeCredentials: PublicKeyCredentialDescriptorJSON[];
};
};