Interface Http2PushFrameHeaders

This is the type of the argument passed to the first parameter of

interface Http2PushFrameHeaders {
    numberOfHeaders: number;
    getByIndex(index: number): null | string;
    getByName(name: string): null | string;
}

Properties

numberOfHeaders: number

Methods