UNPKG

secure-token-kit

Version:

A robust, framework-agnostic TypeScript library for secure token and session management.

11 lines 299 B
import { SignOptions } from 'jsonwebtoken'; /** * Interface de options para los JWT */ export interface AuthServerOptions { jwtSecret: string; jwtOptions?: SignOptions; refreshTokenSecret: string; refreshTokenOptions?: SignOptions; } //# sourceMappingURL=AuthServerOptions.d.ts.map