Partager via


CommonResponse type

Objet contenant des informations sur la réponse HTTP entrante.

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