@parzh/retryable
Version:
Convenience function to retry an action
16 lines (15 loc) • 411 B
TypeScript
import retryable from "./retryable";
import wait from "./wait";
/** @private */
declare type RetryableFunction = typeof retryable;
/** @private */
declare type WaitFunction = typeof wait;
/** @private */
interface RetryableModule extends RetryableFunction {
retryable: RetryableFunction;
wait: WaitFunction;
default: RetryableFunction;
}
/** @public */
declare const _: RetryableModule;
export = _;