UNPKG

turbo-gulp

Version:

Gulp tasks to boost high-quality projects.

20 lines (16 loc) 293 B
/** * Path, either POSIX or Windows. */ export type SysPath = string; /** * POSIX path, either absolute or relative. */ export type PosixPath = string; /** * Relative POSIX path. */ export type RelPosixPath = string; /** * Absolute POSIX path. */ export type AbsPosixPath = string;