UNPKG

nestjs-resilience

Version:

A module for improving the reliability and fault-tolerance of your NestJS applications

5 lines (4 loc) 173 B
import { Backoff } from './base.backoff'; export declare class ExponentialBackoff extends Backoff { getGenerator(maxRetries: number): Generator<number, void, number>; }