UNPKG

@aws-amplify/core

Version:
13 lines (10 loc) 464 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { fetchAuthSession as fetchAuthSessionInternal } from './internal/fetchAuthSession'; import { Amplify } from '../Amplify'; import { AuthSession, FetchAuthSessionOptions } from '../Auth/types'; export const fetchAuthSession = ( options?: FetchAuthSessionOptions ): Promise<AuthSession> => { return fetchAuthSessionInternal(Amplify, options); };