共用方式為


CommonResponse type

物件,包含傳入 HTTP 回應的相關資訊。

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