Files
2026-01-01 15:25:19 +05:30

8 lines
202 B
TypeScript

/**
* Cleans a URL by stripping the protocol, host, and search params.
*
* @param urlString the url to clean
* @returns the cleaned url
*/
export declare function cleanURL(url: string | URL): URL;