JwtModuleAsyncOptions


interface JwtModuleAsyncOptions extends Pick {
  useExisting?: Type<JwtOptionsFactory>
  useClass?: Type<JwtOptionsFactory>
  useFactory?: (...args: any[]) => Promise<JwtModuleOptions> | JwtModuleOptions
  inject?: any[]
}

Properties

Property Description
useExisting?: Type<JwtOptionsFactory>
useClass?: Type<JwtOptionsFactory>
useFactory?: (...args: any[]) => Promise<JwtModuleOptions> | JwtModuleOptions
inject?: any[]