UNPKG

a2r

Version:
7 lines (6 loc) 265 B
/** * Gets clean project name (slug style) for environment variables, cookies, etc * @param projectPath Main project (solution) path */ declare const getCleanProjectName: (projectPath?: string | undefined) => Promise<string>; export default getCleanProjectName;