@ctrl/plex
    Preparing search index...

    Interface ResourceConnectOptions

    interface ResourceConnectOptions {
        ipv6?: boolean;
        ipVersions?: readonly ResourceIpVersion[];
        locations?: readonly ResourceConnectionLocation[];
        schemes?: readonly ResourceConnectionScheme[];
        ssl?: boolean;
        timeout?: number;
    }

    Hierarchy (View Summary)

    Index
    ipv6?: boolean

    Restrict connections to IPv6 (true), IPv4 (false), or either (null).

    ipVersions?: readonly ResourceIpVersion[]

    IP-version priority.

    locations?: readonly ResourceConnectionLocation[]

    Location priority.

    schemes?: readonly ResourceConnectionScheme[]

    Protocol priority.

    ssl?: boolean

    Restrict connections to HTTPS (true), HTTP (false), or either (null).

    timeout?: number

    Per-connection timeout in milliseconds.