UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

10 lines (9 loc) • 357 B
export { modifyUrlSameOrigin }; export { ModifyUrlSameOriginOptions }; type ModifyUrlSameOriginOptions = { hash?: string | null; search?: Search | null; pathname?: string; }; type Search = Record<string, string | null | undefined> | URLSearchParams; declare function modifyUrlSameOrigin(url: string, modify: ModifyUrlSameOriginOptions): string;