@tsdotnet/uri - v2.0.14
    Preparing search index...

    Interface UriValues

    https://en.wikipedia.org/wiki/Uniform_Resource_Identifier scheme:[//[user:password@]domain[:port]][/]path[?query][#fragment]

                         hierarchical part
    ???????????????????????????????????????????
    authority path
    ???????????????????????????????????????????
    abc://username:password@example.com:123/path/data?key=value#fragid1
    ??? ????????????????? ??????????? ??? ????????? ???????
    scheme user information host port query fragment
    interface UriValues {
        fragment?: string | null;
        host?: string | null;
        path?: string | null;
        port?: number | null;
        query?: string | null;
        scheme?: Any | null;
        userInfo?: string | null;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    fragment?: string | null

    The escaped URI fragment.

    host?: string | null

    The host component of this instance.

    path?: string | null

    The absolute path of the URI.

    port?: number | null

    The port number of this URI.

    query?: string | null

    Gets any query information included in the specified URI.

    scheme?: Any | null

    The scheme name for this URI.

    userInfo?: string | null

    The user name, password, or other user-specific information associated with the specified URI.