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
/
shared
/
interfaces
/
session.ts
13 lines
(11 loc)
•
257 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
interface
ISession
{
readonly
accessToken
:
string
;
readonly
refreshToken
:
string
; }
export
interface
IUser
{
readonly
username
:
string
;
readonly
password
:
string
;
readonly
id
?:
string
;
readonly
roles
?:
string
;
readonly
sub
?:
string
; }