telefunc
Version:
Remote functions. Instead of API.
17 lines (16 loc) • 564 B
TypeScript
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;