Condividi tramite


CommonResponse type

Oggetto contenente informazioni sulla risposta HTTP in ingresso.

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