UNPKG

mesh-fetcher

Version:

A Node.js package for fetching data from multiple APIs with enhanced features.

3 lines (2 loc) 196 B
import type { APIResponse } from '../types'; export declare function fetchAPIWithRetry<T = any>(url: string, options?: RequestInit, retries?: number, delay?: number): Promise<T | APIResponse<T>>;