UNPKG

@katalysttech/auth

Version:

A flexible authentication module for NestJS applications with JWT and refresh token support

11 lines (10 loc) 213 B
export interface IRefreshToken { id: string; userId: string | number; tokenId: string; expiresAt: Date; isRevoked?: boolean; deviceInfo?: any; createdAt?: Date; updatedAt?: Date; }