UNPKG

auth-service-nestjs

Version:

Authorization service for lightweight systems

19 lines (16 loc) 279 B
export interface JwtTokenPayload { login: string; role: string; sessionId: string; type: string; iat: number; exp: number; } export interface JwtPair { access: string; refresh: string; } export interface SessionStat { totalRemoved: number; total: number; }