@aws-amplify/core
Version:
Core category of aws-amplify
13 lines (10 loc) • 404 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import { AmplifyClass } from '../../Amplify';
import { AuthSession, FetchAuthSessionOptions } from '../../Auth/types';
export const fetchAuthSession = (
amplify: AmplifyClass,
options?: FetchAuthSessionOptions,
): Promise<AuthSession> => {
return amplify.Auth.fetchAuthSession(options);
};