JwtModuleAsyncOptions


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

Properties

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