HttpResponse type

Represents the shape of an HttpResponse

type HttpResponse = {
  body: unknown
  headers: RawHttpHeaders
  request: PipelineRequest
  status: string
}