import type { fetchResponse, fetchOps } from "./doFetch";

declare module "@ritttzy/core" {
  function doFetch(
    url: string,
    method?: string,
    // eslint-disable-next-line @typescript-eslint/no-explicit-any
    body?: any | null,
    opts?: fetchOps
  ): Promise<fetchResponse>;
}
