UNPKG

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