Interface UriComponents

interface UriComponents {
    authority?: string;
    fragment?: string;
    path?: string;
    query?: string;
    scheme: string;
}

Properties§

§authority?: string
§fragment?: string
§path?: string
§query?: string
§scheme: string