UNPKG

378 BTypeScriptView Raw
1import { Operation } from '../core';
2export interface DelayFunction {
3 (count: number, operation: Operation, error: any): number;
4}
5export interface DelayFunctionOptions {
6 initial?: number;
7 max?: number;
8 jitter?: boolean;
9}
10export declare function buildDelayFunction(delayOptions?: DelayFunctionOptions): DelayFunction;
11//# sourceMappingURL=delayFunction.d.ts.map
\No newline at end of file