@aws-amplify/auth
Version:
Auth category of aws-amplify
15 lines (13 loc) • 426 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
/**
* 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;
}