UNPKG

@stryke/path

Version:

A package containing various utilities that expand the functionality of NodeJs's built-in `path` module

9 lines (8 loc) 273 B
/** * The platform-specific file delimiter. * * Equals to `";"` in windows and `":"` in all other platforms. */ export declare const delimiter: ";" | ":"; export declare const posix: import("path").PlatformPath; export declare const win32: import("path").PlatformPath;