UNPKG

@sologence/nestjs-auth

Version:

## Overview

9 lines (8 loc) 190 B
export interface JwtConfigOptions { secret: string; expiresIn?: string | number; issuer?: string; } export interface AuthConfigProvider { getJwtConfig(): JwtConfigOptions; }