frontend/.pnpm-store/v3/files/c3/58aad573132e13f1a70d8fc7cf9468178119343195d72da49502170a4d4790cda7a67e6b10541cec58f84e3bdc2a04e796622c8e63e68f73b36845368edb7b

19 lines
364 B
Plaintext

declare interface ParsedUrl {
protocols: string[];
protocol: string;
port?: string;
resource: string;
user: string;
pathname: string;
hash: string;
search: string;
href: string;
query: {
[key: string]: any;
}
}
declare function parseUrl(url: string, normalize?: boolean | Object): ParsedUrl;
export = parseUrl