UNPKG

@clickup/rest-client

Version:

A syntax sugar tool around Node fetch() API, tailored to work with TypeScript and response validators

8 lines 372 B
import type RestOptions from "../RestOptions"; import type RestResponse from "../RestResponse"; /** * Returns a new retry delay of the error needs to be retried, otherwise * "no_retry". */ export default function calcRetryDelay(error: any, options: RestOptions, res: RestResponse, retryDelayMs: number): number | "no_retry"; //# sourceMappingURL=calcRetryDelay.d.ts.map