UNPKG

rx-retry

Version:

Package for retries in RxJS, Promises and NestJS

19 lines 878 B
import type { DynamicModule } from '@nestjs/common'; import type { ModuleConfiguration } from '../models/retry-config.model'; import type { ASYNC_OPTIONS_TYPE, OPTIONS_TYPE } from './rx-retry.module-builder'; import { ConfigurableModuleClass } from './rx-retry.module-builder'; export declare class RxRetryModule extends ConfigurableModuleClass { /** * Configure the `rx-retry` module statically. * * @param options options to configure the cache manager */ static register(options: typeof OPTIONS_TYPE): DynamicModule; /** * Configure the `rx-retry` module dynamically. * * @param options method for dynamically supplying cache manager configuration options */ static registerAsync(options: typeof ASYNC_OPTIONS_TYPE & Pick<ModuleConfiguration, 'isGlobal'>): DynamicModule; } //# sourceMappingURL=rx-retry.module.d.ts.map