Webigail
    Preparing search index...

    Interface IZUrlInfo

    Represents information about a url.

    interface IZUrlInfo {
        hash?: string;
        hostname: string;
        params: { key: string; val: string }[];
        password?: string;
        path: string[];
        port?: number;
        protocol: string;
        username?: string;
    }
    Index

    Properties

    hash?: string

    The client side hash route.

    hostname: string

    The host.

    params: { key: string; val: string }[]

    The key value params.

    password?: string

    The password.

    path: string[]

    A list of current paths.

    You can always get the full path using path.join('/')

    port?: number

    The port number.

    protocol: string

    The protocol for the url.

    username?: string

    The username.