UNPKG

nestjs-starter

Version:

Get started for beginners with Nestjs

13 lines (11 loc) 257 B
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; }