UNPKG
@sologence/nestjs-auth
Version:
latest (2.0.1)
2.0.1
1.0.0
## Overview
@sologence/nestjs-auth
/
dist
/
auth
/
interfaces
/
validation-result.interface.d.ts
8 lines
(7 loc)
•
187 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
User
,
USER_ROLE
}
from
'../../entity/user.entity'
;
export
interface
ValidationResult
{
isValidated
:
boolean
;
userRole
?:
USER_ROLE
;
token
?:
string
;
user
?:
User
; }