gverse
Version:
Object Graph Mapper for Dgraph
5 lines (4 loc) • 297 B
TypeScript
/** Returns true if the error is retry-able and we have retries remaining */
export declare function shouldRetry(error: Error, retries: number): boolean;
/** Returns an promise with timeout. Used for retries. */
export declare function waitPromise(purpose?: string, time?: number): Promise<void>;