frontend/.pnpm-store/v3/files/cb/c94ae74a1ddf39c6293e8a641d1e8a42d31d9909e867e108167b554258412cdc61a4ef1e4aaa37727bece7c6bb15774376a3ae2e356f2283fa204ca7c8eb48

10 lines
385 B
Plaintext

/**
* Join all arguments together and normalize the resulting url.
* This works similar to `path.join` but you shouldn't use `path.join` for urls since it works
* differently depending on the operating system and also doesn't work for some cases.
*/
declare function urlJoin(...parts: string[]): string;
declare function urlJoin(parts: string[]): string;
export default urlJoin;