Files
scrap/node_modules/next/dist/shared/lib/router/utils/relativize-url.d.ts
2024-09-24 03:52:46 +00:00

7 lines
289 B
TypeScript

/**
* Given a URL as a string and a base URL it will make the URL relative
* if the parsed protocol and host is the same as the one in the base
* URL. Otherwise it returns the same URL string.
*/
export declare function relativizeURL(url: string | string, base: string | URL): string;