frontend/.pnpm-store/v3/files/59/beb385205e3cc8b58765d5d0dc4ef24b2fbb9f4eb0c71f08ed4703e7fbc2e197dfdf7807d340976d9889f5543d5ca1e204d43bb83a45d0c7e9baade9ab7f97

19 lines
370 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 default parseUrl