Neah/node_modules/next/dist/server/route-modules/app-route/helpers/clean-url.d.ts
2025-04-24 17:19:14 +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;