UNPKG

ts-retry

Version:

A little retry tool to execute a function until the function is successful. Can also bind a timeout to a function. This lib is usable in typescript, in javascript, in node, in SPA tools (rest, Vue, Svelte...) and browser (available in ESM and common js fo

3 lines (2 loc) 175 B
export declare const asyncDecorator: <T>(fn: () => T) => () => Promise<T>; export declare const assertDefined: <T>(value: T | null | undefined, errMsg: string) => value is T;