You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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 {};
|
|
|