UNPKG

@aws-amplify/auth

Version:
16 lines (12 loc) 609 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { Hub, clearCredentials } from '@aws-amplify/core'; import { AMPLIFY_SYMBOL } from '@aws-amplify/core/internals/utils'; import { DefaultOAuthStore } from '../../utils/signInWithRedirectStore'; import { tokenOrchestrator } from '../../tokenProvider'; export const completeOAuthSignOut = async (store: DefaultOAuthStore) => { await store.clearOAuthData(); tokenOrchestrator.clearTokens(); await clearCredentials(); Hub.dispatch('auth', { event: 'signedOut' }, 'Auth', AMPLIFY_SYMBOL); };