@tsdotnet/uri - v1.1.0
    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?: null | string;
        host?: null | string;
        path?: null | string;
        port?: null | number;
        query?: null | string;
        scheme?: null | Any;
        userInfo?: null | string;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    fragment?: null | string

    The escaped URI fragment.

    host?: null | string

    The host component of this instance.

    path?: null | string

    The absolute path of the URI.

    port?: null | number

    The port number of this URI.

    query?: null | string

    Gets any query information included in the specified URI.

    scheme?: null | Any

    The scheme name for this URI.

    userInfo?: null | string

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