next-flow-interface
Version:
Interface package for NEXT FlOW. You can use this package to build your own plugin that can control anything.
8 lines • 390 B
TypeScript
export declare function fetchJsonWithRetry(url: string, retries?: number): Promise<unknown>;
export declare function fetchBlobWithRetry(url: string, retries?: number): Promise<Blob>;
declare const NetworkUtils: {
fetchJsonWithRetry: typeof fetchJsonWithRetry;
fetchBlobWithRetry: typeof fetchBlobWithRetry;
};
export default NetworkUtils;
//# sourceMappingURL=network-utils.d.ts.map