UNPKG

@nxtoai/jwtette

Version:

JWT authentication package for NxtoAI microservices

8 lines (7 loc) 238 B
import { JwtService as NestJwtService } from '@nestjs/jwt'; export declare class JwtService { private readonly jwtService; constructor(jwtService: NestJwtService); sign(payload: any): string; verify(token: string): any; }