Skip to main content
type FetcherLike =
  | typeof fetch
  | {
  fetch: typeof fetch;
};
A fetch function or an object with a fetch method.