UNPKG

289 BTypeScriptView Raw
1import { Provider } from '@nestjs/common';
2import { JwtAsyncOption, JwtOption } from './jwt.interface';
3export declare function createJwtOptionsProvider(options: JwtOption[]): Provider<JwtOption[]>;
4export declare function createJwtAsyncOptionsProvider(options: JwtAsyncOption): Provider;