import { Operation } from 'apollo-link'; export interface RetryFunction { (count: number, operation: Operation, error: any): boolean | Promise; } export interface RetryFunctionOptions { max?: number; retryIf?: (error: any, operation: Operation) => boolean | Promise; } export declare function buildRetryFunction(retryOptions?: RetryFunctionOptions): RetryFunction; //# sourceMappingURL=retryFunction.d.ts.map