UNPKG
ng2-idle-core
Version:
latest (6.0.1)
6.0.1
ng-idle for Angular 2+ core module
github.com/hudibrian/ng2-idle.git
hudibrian/ng2-idle
ng2-idle-core
/
src
/
idleexpiry.d.ts
11 lines
(10 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
declare
abstract
class
IdleExpiry
{
protected
idValue
:
any
;
protected
idlingValue
:
boolean
;
constructor
(
);
id
(
value
?:
any
):
any
;
abstract
last
(
value
?:
Date
):
Date
;
idling
(
value
?:
boolean
):
boolean
;
now
():
Date
;
isExpired
():
boolean
; }