UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

9 lines (8 loc) 277 B
import { JWTResponse } from "./abstract"; export declare class JWT { static error: unknown; private static jwt; private static getConfig; static generateToken<P>(payload: P): Promise<JWTResponse>; static verifyToken<P>(token: string): Promise<P | false>; }