UNPKG

fetch-h2

Version:

HTTP/1+2 Fetch API client for Node.js

5 lines (4 loc) 259 B
/// <reference types="node" /> import { IncomingHttpHeaders as IncomingHttpHeadersH1 } from "http"; import { IncomingHttpHeaders as IncomingHttpHeadersH2 } from "http2"; export declare type IncomingHttpHeaders = IncomingHttpHeadersH1 | IncomingHttpHeadersH2;