UNPKG

@aws-amplify/core

Version:
11 lines (10 loc) 463 B
import { SessionListenerInterface, SessionStateChangeListener } from './types'; export declare class SessionListener implements SessionListenerInterface { private currentAppState?; constructor(); addStateChangeListener(listener: SessionStateChangeListener, notifyOnAdd?: boolean): void; removeStateChangeListener(handler: SessionStateChangeListener): void; private handleStateChange; private notifyHandlers; private getSessionState; }