@aws-amplify/auth
Version:
Auth category of aws-amplify
16 lines (13 loc) • 438 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import {
ChallengeName,
ChallengeParameters,
} from '../../../foundation/factories/serviceClients/cognitoIdentityProvider/types';
import { AuthSignInOutput } from '../../../types';
export type WebAuthnSignInResult =
| AuthSignInOutput
| {
challengeName: ChallengeName;
challengeParameters: ChallengeParameters;
};