Properties of a Header.

interface IHeader {
    key?: null | string;
    value?: null | string;
}

Implemented by

Properties

Properties

key?: null | string

A header key such as Authorization or Content-Type

value?: null | string

A value for the given header key like Basic MYAUTHKEY or application/json