UNPKG

rs-jwt

Version:

A really simple JSON Web Token reader.

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