UNPKG

272 BTypeScriptView Raw
1import { SignOutInput } from '../types';
2/**
3 * Signs a user out
4 *
5 * @param input - The SignOutInput object
6 * @throws AuthTokenConfigException - Thrown when the token provider config is invalid.
7 */
8export declare function signOut(input?: SignOutInput): Promise<void>;