UNPKG

@flex-development/pathe

Version:

Universal drop-in replacement for node:path

11 lines (10 loc) 247 B
/** * @file Type Aliases - DeviceRoot * @module pathe/types/DeviceRoot */ import type { DriveLetter, Sep } from '@flex-development/pathe'; /** * Device root. */ type DeviceRoot = `${DriveLetter}${Sep}`; export type { DeviceRoot as default };