Fake Mirrors
    Preparing search index...

    Interface HttpUrl

    Components of a parsed HTTP URL.

    interface HttpUrl {
        hash: string;
        hostname: string;
        pathname: string;
        port: string;
        protocol: string;
        search: string;
    }
    hash: string

    The URL fragment.

    hostname: string

    The hostname of the URL.

    pathname: string

    The URL path.

    port: string

    The port number.

    protocol: string

    The URL protocol.

    search: string

    The URL query string.