@flex-development/pathe
Version:
Universal drop-in replacement for node:path
14 lines (13 loc) • 306 B
text/typescript
/**
* @file Type Aliases - Sep
* @module pathe/types/Sep
*/
import type { PosixSep, WindowsSep } from '@flex-development/pathe';
/**
* Union of path segment separators.
*
* @see {@linkcode PosixSep}
* @see {@linkcode WindowsSep}
*/
type Sep = PosixSep | WindowsSep;
export type { Sep as default };