UNPKG
ohayolibs
Version:
latest (1.0.1)
1.0.1
1.0.0
Ohayo is a set of essential modules for ohayojp.
ohayolibs
/
packages
/
auth
/
src
/
token
/
simple
/
simple.model.ts
11 lines
(7 loc)
•
223 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
NzSafeAny
}
from
'ng-zorro-antd/core/types'
;
import
{
ITokenModel
}
from
'../interface'
;
export
class
SimpleTokenModel
implements
ITokenModel
{ [
key
:
string
]:
NzSafeAny
;
token
:
string
;
expired
?:
number
; }