UNPKG

@aws-amplify/auth

Version:
13 lines (10 loc) 338 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { AuthWebAuthnCredential } from './models'; /** * Output type for Cognito listWebAuthnCredentials API. */ export interface ListWebAuthnCredentialsOutput { credentials: AuthWebAuthnCredential[]; nextToken?: string; }