CommonResponse type

An object containing information about the incoming HTTP response.

type CommonResponse = Omit<Response, "body" | "trailer" | "formData"> & {
  body: any
  formData: any
  trailer: any
}