CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
backoff.d.ts10 linesDownload Raw Back to dist
1import { IBackOffOptions, BackoffOptions } from "./options";2export { BackoffOptions, IBackOffOptions };3/**4 * Executes a function with exponential backoff.5 * @param request the function to be executed6 * @param options options to customize the backoff behavior7 * @returns Promise that resolves to the result of the `request` function8 */9export declare function backOff<T>(request: () => Promise<T>, options?: BackoffOptions): Promise<T>;10 
basant307/AI_Governance_Project · CoolFace