UNPKG

idle-session-timeout

Version:

Idle session timeout is a security and resource management feature that automatically logs a user out after a period of inactivity

9 lines (8 loc) 230 B
export interface IIdleSessionTimeout { start: () => void; onTimeLeftChange?: (timeLeft: number) => void; onTimeOut?: () => void; dispose: () => void; reset: () => void; getTimeLeft: () => number; }