UNPKG

235 BTypeScriptView Raw
1declare function getSearchParams(path: string): URLSearchParams;
2/**
3 * Removes search parameters and the fragment
4 * from a given URL string.
5 */
6declare function cleanUrl(path: string): string;
7
8export { cleanUrl, getSearchParams };