NeahNew/node_modules/next/dist/server/route-modules/app-route/helpers/clean-url.d.ts
2025-05-03 14:17:46 +02:00

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;