UNPKG
@sologence/nestjs-auth
Version:
latest (2.0.1)
2.0.1
1.0.0
## Overview
@sologence/nestjs-auth
/
dist
/
auth
/
interfaces
/
jwt-payload.interface.d.ts
6 lines
(5 loc)
•
126 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
USER_ROLE
}
from
'../../entity/user.entity'
;
export
interface
JwtPayload
{
email
:
string
;
role
:
USER_ROLE
; }