// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import 'package:amplify_core/amplify_core.dart'; /// The result of an Auth operation. typedef AuthResult = AWSResult; /// A successful result to an Auth operation. typedef AuthSuccessResult = AWSSuccessResult; /// A failed result to an Auth operation. typedef AuthErrorResult = AWSErrorResult;