@aws-amplify/auth
Version:
Auth category of aws-amplify
15 lines (12 loc) • 339 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
/**
* Input type for Cognito listWebAuthnCredentials API.
*/
export interface ListWebAuthnCredentialsInput {
pageSize?: number;
nextToken?: string;
}
export interface DeleteWebAuthnCredentialInput {
credentialId: string;
}