CommonRequestInit type

An object containing information about the outgoing HTTP request.

type CommonRequestInit = Omit<RequestInit, "body" | "headers" | "signal"> & {
  body?: any
  headers?: any
  signal?: any
}