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