makearmy-app/node_modules/next/dist/server/route-modules/app-route/helpers/clean-url.d.ts

8 lines
202 B
TypeScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
/**
* 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;