UNPKG

369 BTypeScriptView Raw
1import { IConfig } from '@anycli/config';
2export default class Yarn {
3 config: IConfig;
4 cwd: string;
5 constructor({config, cwd}: {
6 config: IConfig;
7 cwd: string;
8 });
9 readonly bin: string;
10 fork(modulePath: string, args?: string[], options?: any): Promise<void>;
11 exec(args?: string[]): Promise<void>;
12 proxyArgs(): string[];
13}