/** * @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 }