UNPKG

nomatic-jwt

Version:

JSON Web Token (JWT) utilities for Node.js

8 lines (7 loc) 387 B
/// <reference types="node" /> export declare function encode(data?: string | Buffer): string; export declare function escape(data: string): string; export declare function unescape(data: string): string; export declare function encodeSafe(data?: string | Buffer): string; export declare function decode(data?: string): string; export declare function decodeSafe(data?: string): string;