CommonResponse type

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