Interface HTTPHeaders

Record of HTTP headers. Each entry contains the header name and its associated value.

interface HTTPHeaders {
    [headerName: string]: string;
}

Indexable

[headerName: string]: string