UNPKG

@omostan/ngx-idle

Version:

A module for responding to idle users in Angular applications. this is a forked version of the original @ng-Idle

14 lines 649 B
import { EventEmitter } from '@angular/core'; import { InterruptArgs } from './interruptargs'; import { InterruptOptions } from './interruptoptions'; export declare abstract class InterruptSource { protected attachFn?: (source: InterruptSource) => void; protected detachFn?: (source: InterruptSource) => void; isAttached: boolean; onInterrupt: EventEmitter<InterruptArgs>; constructor(attachFn?: (source: InterruptSource) => void, detachFn?: (source: InterruptSource) => void); attach(): void; detach(): void; initialize?(options?: InterruptOptions): void; } //# sourceMappingURL=interruptsource.d.ts.map