共用方式為


CommonRequestInit type

物件,包含傳出 HTTP 要求的相關資訊。

type CommonRequestInit = Omit<RequestInit, "body" | "headers" | "signal"> & {
  body?: any
  headers?: any
  signal?: any
}