@bitblit/ratchet-common
Version:
Common tools for general use
6 lines (5 loc) • 312 B
TypeScript
import { ExpiredJwtHandling } from './expired-jwt-handling.js';
import { JwtTokenBase } from './jwt-token-base.js';
export declare class JwtDecodeOnlyRatchet {
static decodeTokenNoVerify<T extends JwtTokenBase>(token: string, expiredHandling?: ExpiredJwtHandling, inDecodeFuntion?: (val: string) => T): T;
}