@bearnjs/rest
    Preparing search index...

    Type Alias HTTPHeaders

    HTTPHeaders: Record<string, string | number> & {
        accept?: string;
        "accept-encoding"?: string;
        "accept-language"?: string;
        "accept-ranges"?: string;
        "access-control-allow-credentials"?: string;
        "access-control-allow-headers"?: string;
        "access-control-allow-methods"?: string;
        "access-control-allow-origin"?: string;
        "access-control-expose-headers"?: string;
        "access-control-max-age"?: string;
        "access-control-request-headers"?: string;
        "access-control-request-method"?: string;
        age?: string;
        allow?: string;
        "alt-svg"?: string;
        "alt-used"?: string;
        authorization?: string;
        "cache-control"?: string;
        "clear-site-data"?: string;
        connection?: string;
        "content-disposition"?: string;
        "content-encoding"?: string;
        "content-language"?: string;
        "content-length"?: string | number;
        "content-location"?: string;
        "content-range"?: string;
        "content-security-policy"?: string;
        "content-security-policy-report-only"?: string;
        "content-type"?: SetContentType | string & {};
        cookie?: string;
        "cross-origin-embedder-policy"?: string;
        "cross-origin-opener-policy"?: string;
        "cross-origin-resource-policy"?: string;
        date?: string;
        dnt?: string;
        "early-data"?: string;
        etag?: string;
        expect?: string;
        "expect-ct"?: string;
        expires?: string;
        forwarded?: string;
        "if-match"?: string;
        "if-modified-since"?: string;
        "if-none-match"?: string;
        "if-range"?: string;
        "if-unmodified-since"?: string;
        "keep-alive"?: string;
        "large-allocation"?: string;
        "last-event-id"?: string;
        "last-modified"?: string;
        link?: string;
        location?: string;
        "max-forwards"?: string;
        "no-vary-search"?: string;
        origin?: string;
        "permission-policy"?: string;
        "ping-from"?: string;
        "ping-to"?: string;
        pragma?: string;
        "proxy-authenticate"?: string;
        "proxy-authorization"?: string;
        range?: string;
        refresh?: string;
        "report-to"?: string;
        "retry-after"?: string;
        server?: "Elysia" | string & {};
        "service-worker-allowed"?: string;
        "set-cookie"?: string | string[];
        "source-map"?: string;
        "strict-transport-security"?: string;
        te?: string;
        "timing-allow-origin"?: string;
        trailer?: string;
        "transfer-encoding"?: string;
        upgrade?: string;
        "upgrade-insecure-requests"?: string;
        vary?: string;
        via?: string;
        "www-authenticate"?: string;
        "x-content-type-options"?: string;
        "x-dns-prefetch-control"?: string;
        "x-forwarded-for"?: string;
        "x-forwarded-host"?: string;
        "x-forwarded-proto"?: string;
        "x-frame-options"?: string;
        "x-powered-by"?: "Elysia" | string & {};
        "x-request-id"?: string;
        "x-requested-with"?: string;
        "x-robots-tag"?: string;
        "x-ua-compatible"?: string;
        "x-xss-protection"?: string;
    }

    Represents a strongly typed record of HTTP headers.