manu-sapiens's picture
removed symlink and replaced with a watcher process
2b24a67
raw
history blame contribute delete
206 Bytes
import { IBackOffOptions, BackoffOptions } from "./options";
export { BackoffOptions, IBackOffOptions };
export declare function backOff<T>(request: () => Promise<T>, options?: BackoffOptions): Promise<T>;