UNPKG

mesh-fetcher

Version:

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

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