UNPKG

@flex-development/pathe

Version:

Universal drop-in replacement for node:path

13 lines (12 loc) 248 B
/** * @file Type Aliases - Cwd * @module pathe/types/Cwd */ /** * Get the path to the current working directory. * * @return {string} * Absolute path to current working directory */ type Cwd = () => string; export type { Cwd as default };