UNPKG

revbits-cip-integration

Version:
10 lines (9 loc) 358 B
import { PLATFORM } from '../interfaces/types.type'; import { Actor, User } from '../interfaces/user.interface'; export declare class JWTClient { platform: PLATFORM; privKey: string; actor: Actor | null | undefined; constructor(platform: PLATFORM, privKey: string, actor?: Actor | null | undefined); getJWT(user?: User | null): string; }