interface URIComponents {
    error?: string;
    fragment?: string;
    host?: string;
    path?: string;
    port?: string | number;
    query?: string;
    reference?: string;
    scheme?: string;
    userinfo?: string;
}

Properties

error?: string
fragment?: string
host?: string
path?: string
port?: string | number
query?: string
reference?: string
scheme?: string
userinfo?: string