UNPKG

rs-jwt

Version:

A really simple JSON Web Token reader.

10 lines (9 loc) 249 B
export declare class Jwt { private header; private payload; private signature; constructor(header: object, payload: object, signature: string | null); getHeader(): any; getPayload(): any; getSignature(): string | null; }