summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types
diff options
context:
space:
mode:
Diffstat (limited to 'packages/typescript-types')
-rw-r--r--packages/typescript-types/src/index.ts72
1 files changed, 0 insertions, 72 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index 012611f..25d4203 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -144,75 +144,3 @@ export interface AuthenticatorAttestationResponseFuture extends AuthenticatorAtt
getPublicKey?: () => ArrayBuffer;
getPublicKeyAlgorithm?: () => COSEAlgorithmIdentifier[];
}
-
-/**
- * Client Extensions - Attestation (Registration)
- */
-
-export interface CredentialCreationExtensionsInputJSON {
- appidExclude?: string;
- uvm?: boolean;
- credProps?: boolean;
- prf?: {
- eval?: {
- first: Base64URLString;
- second?: Base64URLString;
- };
- evalByCredential?: {
- [base64CredID: string]: { first: Base64URLString; second?: Base64URLString };
- };
- };
-}
-
-export interface CredentialCreationExtensionsOutputJSON {
- appidExclude?: boolean;
- uvm?: Array<[number, number, number]>;
- credProps?: {
- rk: boolean;
- };
- prf?: {
- enabled?: boolean;
- results?: {
- first: Base64URLString;
- second?: Base64URLString;
- };
- };
-}
-
-/**
- * Client Extensions - Assertion (Authentication)
- */
-
-export interface CredentialRequestExtensionsInputJSON {
- appid?: string;
- uvm?: boolean;
- prf?: {
- eval?: {
- first: Base64URLString;
- second?: Base64URLString;
- };
- evalByCredential?: {
- [base64CredID: string]: { first: Base64URLString; second?: Base64URLString };
- };
- };
- largeBlob?: {
- read?: boolean;
- write?: Base64URLString;
- };
-}
-
-export interface CredentialRequestExtensionsOutputJSON {
- appid?: boolean;
- uvm?: Array<[number, number, number]>;
- prf?: {
- enabled?: boolean;
- results?: {
- first: Base64URLString;
- second?: Base64URLString;
- };
- };
- largeBlob?: {
- blob?: Base64URLString;
- written?: boolean;
- };
-}