fetch.d.ts 214 B

1234
  1. import fetch, { FetchOptions } from 'make-fetch-happen';
  2. type Response = Awaited<ReturnType<typeof fetch>>;
  3. export declare function fetchWithRetry(url: string, options: FetchOptions): Promise<Response>;
  4. export {};