UNPKG

@etsoo/shared

Version:

TypeScript shared utilities and functions

11 lines (10 loc) 174 B
/** * Similar result with node.js path.parse(path) */ export type ParsedPath = { root: string; dir: string; base: string; ext: string; name: string; };