@apollo/client
Version:
A fully-featured caching GraphQL client.
11 lines • 392 B
TypeScript
import type { Operation } from "../core/index.js";
export interface DelayFunction {
(count: number, operation: Operation, error: any): number;
}
export interface DelayFunctionOptions {
initial?: number;
max?: number;
jitter?: boolean;
}
export declare function buildDelayFunction(delayOptions?: DelayFunctionOptions): DelayFunction;
//# sourceMappingURL=delayFunction.d.ts.map