UNPKG
nestjs-starter
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
Get started for beginners with Nestjs
github.com/pktai/nestjs-starter
pktai/nestjs-starter
nestjs-starter
/
src
/
modules
/
auth
/
dto
/
interfaces.ts
9 lines
(8 loc)
•
126 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
IPayload
{
id
?:
string
;
username
:
string
;
roles
:
string
;
sub
?:
string
;
iat
?:
Date
;
exp
?:
Date
; }