basant307/AI_Governance_Project
045
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 