wilddragon-site/node_modules/next/dist/server/route-modules/app-route/helpers/clean-url.d.ts
2026-04-17 15:51:01 -04:00

7 lines
202 B
TypeScript
Executable file

/**
* 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;