Interface Headers

Hierarchy

  • Headers

Methods

  • Parameters

    • name: string
    • value: string

    Returns void

  • Parameters

    • name: string

    Returns void

  • Returns an iterator allowing to go through all key/value pairs contained in this object.

    Returns IterableIterator<[string, string]>

  • Parameters

    • callbackfn: ((value, key, parent) => void)
        • (value, key, parent): void
        • Parameters

          • value: string
          • key: string
          • parent: Headers

          Returns void

    • Optional thisArg: any

    Returns void

  • Parameters

    • name: string

    Returns string

  • Parameters

    • name: string

    Returns boolean

  • Returns an iterator allowing to go through all keys of the key/value pairs contained in this object.

    Returns IterableIterator<string>

  • Parameters

    • name: string
    • value: string

    Returns void

  • Returns an iterator allowing to go through all values of the key/value pairs contained in this object.

    Returns IterableIterator<string>