UNPKG

@rxjs-ninja/rxjs-utility

Version:
13 lines (12 loc) 314 B
/** * @packageDocumentation * @module Utility */ /** * JWT Decoder from * https://stackoverflow.com/questions/38552003/how-to-decode-jwt-token-in-javascript-without-using-a-library * @private * @internal * @param token */ export declare function parseJwt<T extends unknown>(token: string): T;