Trakteer.js
    Preparing search index...

    Interface ClientRequestArgs

    interface ClientRequestArgs {
        _defaultAgent?: Agent;
        agent?: boolean | Agent;
        auth?: string | null;
        createConnection?: (
            options: ClientRequestArgs,
            oncreate: (err: Error | null, socket: Duplex) => void,
        ) => Duplex | null | undefined;
        defaultPort?: string | number;
        family?: number;
        headers?: OutgoingHttpHeaders;
        hints?: number;
        host?: string | null;
        hostname?: string | null;
        insecureHTTPParser?: boolean;
        localAddress?: string;
        localPort?: number;
        lookup?: LookupFunction;
        maxHeaderSize?: number;
        method?: string;
        path?: string | null;
        port?: string | number | null;
        protocol?: string | null;
        setHost?: boolean;
        signal?: AbortSignal;
        socketPath?: string;
        timeout?: number;
        uniqueHeaders?: (string | string[])[];
        joinDuplicateHeaders?: boolean;
    }
    Index

    Properties

    _defaultAgent?: Agent
    agent?: boolean | Agent
    auth?: string | null
    createConnection?: (
        options: ClientRequestArgs,
        oncreate: (err: Error | null, socket: Duplex) => void,
    ) => Duplex | null | undefined
    defaultPort?: string | number
    family?: number
    hints?: number
    host?: string | null
    hostname?: string | null
    insecureHTTPParser?: boolean
    localAddress?: string
    localPort?: number
    maxHeaderSize?: number
    16384
    
    method?: string
    path?: string | null
    port?: string | number | null
    protocol?: string | null
    setHost?: boolean
    signal?: AbortSignal
    socketPath?: string
    timeout?: number
    uniqueHeaders?: (string | string[])[]
    joinDuplicateHeaders?: boolean