Type alias FetchOptions<T>

FetchOptions<T>: {
    apiOptions: T;
    body?: string | unknown;
    headers?: Record<string, string>;
    method: HttpMethod;
}

Type Parameters

  • T

Type declaration

  • apiOptions: T
  • Optional body?: string | unknown
  • Optional headers?: Record<string, string>
  • method: HttpMethod

Generated using TypeDoc