11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
|
import { ConfigService } from '@nestjs/config';
|
||
|
declare const JwtStrategy_base: new (...args: any) => any;
|
||
|
export declare class JwtStrategy extends JwtStrategy_base {
|
||
|
constructor(config: ConfigService);
|
||
|
validate(payload: any): Promise<{
|
||
|
userId: any;
|
||
|
username: any;
|
||
|
}>;
|
||
|
}
|
||
|
export {};
|