component-dbs-core
Version:
DTO objects shared among device backend
10 lines (9 loc) • 397 B
TypeScript
import { EnvironmentService } from '../../../common_services/config/envService';
import { IJwtLib } from './iJwtLib';
export default class JwtLib implements IJwtLib {
private readonly envService;
client: any;
constructor(envService: EnvironmentService);
getKey: (header: any, callback: (arg0: any, arg1: any) => void) => void;
decodeJwt: (token: string) => Promise<unknown>;
}