UNPKG

@nxtoai/jwtette

Version:

JWT authentication package for NxtoAI microservices

20 lines (19 loc) 509 B
import { DynamicModule } from '@nestjs/common'; export interface JwtetteModuleOptions { secret?: string; expiresIn?: string; skipJwtEndpoints?: string[]; aerospike?: { hosts: string[]; namespace: string; port: number; timeout: number; maxSockets: number; maxConnsPerNode: number; user?: string; password?: string; }; } export declare class JwtetteModule { static forRoot(options?: JwtetteModuleOptions): DynamicModule; }