makearmy-app/node_modules/next/dist/server/route-modules/app-route/helpers/clean-url.d.ts
2025-09-22 10:37:53 -04:00

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