UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

15 lines (14 loc) 477 B
export { pathJoin }; export { pathIsRelative }; export { toPosixPath }; export { assertPosixPath }; /**********************/ /****** SHIMS *********/ /**********************/ declare function pathJoin(path1: string, path2: string): string; /**********************/ /****** UTILS *********/ /**********************/ declare function toPosixPath(path: string): string; declare function assertPosixPath(path: string): void; declare function pathIsRelative(path: string): boolean;