mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-06 04:43:52 +01:00
8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
/**
|
|
Check if a project is using [Yarn](https://yarnpkg.com).
|
|
|
|
@param cwd - The current working directory. Default: `process.cwd()`.
|
|
@returns Whether the project uses Yarn.
|
|
*/
|
|
export default function (cwd?: string): boolean;
|