/**
 * 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;
