export type HeadersList = Array<[string, string | string[]]>
export type FlatHeadersList = [string, string][]
export type HeadersObject = Record<string, string | string[]>
export type FlatHeadersObject = Record<string, string>
