@aws-amplify/auth
Version:
Auth category of aws-amplify
12 lines (11 loc) • 334 B
TypeScript
/**
* Shape of a WebAuthn credential
*/
export interface AuthWebAuthnCredential {
credentialId: string | undefined;
friendlyCredentialName: string | undefined;
relyingPartyId: string | undefined;
authenticatorAttachment?: string;
authenticatorTransports: string[] | undefined;
createdAt: Date | undefined;
}