kinetex - v1.0.0-rc.1
    Preparing search index...

    Type Alias HTTPVersion

    HTTPVersion: "HTTP/1.0" | "HTTP/1.1" | "HTTP/2" | "HTTP/3"

    HTTP protocol versions supported by the library.

    When set in KinetexRequest.httpVersion, the client attempts to use the specified version. Falls back to the next available version if the requested version is unavailable:

    • HTTP/2 requires ALPN negotiation or h2 upgrade support
    • HTTP/3 requires HTTP/3-capable transport (experimental)

    In most runtimes (Deno, Bun, Browser), HTTP/2 is negotiated automatically over TLS. On Node.js, use createTransport with preferHTTP2: true for HTTP/2 support.