/** * ParsedHref JSON data structure * @name ParsedHref * @type */ export declare type ParsedHref = { readonly href: string; readonly protocol: string; readonly host: string; readonly userInfo: string; readonly username: string; readonly password: string; readonly hostname: string; readonly port: string; readonly relative: string; readonly pathname: string; readonly directory: string; readonly file: string; readonly search: string; readonly hash: string; }; /** * Parses an href into JSON. * @name parseHref(href: string): ParsedHref */ export declare function parseHref(href: string): ParsedHref; //# sourceMappingURL=parseHref.d.ts.map