UNPKG

vike

Version:

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

17 lines (16 loc) 564 B
export { pathJoin }; export { pathIsRelative }; export { pathIsAbsolute }; export { toPosixPath }; export { assertPosixPath }; /**********************/ /****** SHIMS *********/ /**********************/ declare function pathJoin(path1: string, path2: string): string; declare function pathIsAbsolute(filePath: string): boolean; /**********************/ /****** UTILS *********/ /**********************/ declare function toPosixPath(path: string): string; declare function assertPosixPath(path: string): void; declare function pathIsRelative(path: string): boolean;