2 lines
99 B
TypeScript
2 lines
99 B
TypeScript
export declare function retryOnReject<T>(f: () => T | Promise<T>, maxRetries: number): Promise<T>;
|