Type alias FetchProxy

FetchProxy: ((url, init) => Promise<{
    content: any;
    response: Response;
}>)

Type declaration

    • (url, init): Promise<{
          content: any;
          response: Response;
      }>
    • Parameters

      • url: string
      • init: RequestInit

      Returns Promise<{
          content: any;
          response: Response;
      }>