Type Alias ParsedUrl

ParsedUrl: {
    domain: string;
    fragment?: string;
    host: string;
    path?: string;
    port?: number;
    protocol?: string;
    query?: {
        [name: string]: string;
    };
    subdomain?: string;
}

Parts of a URL