UNPKG

headers-polyfill

Version:

A native "Headers" class polyfill.

5 lines (4 loc) 227 B
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>