UNPKG

391 BTypeScriptView Raw
1import { Interfaces } from '@oclif/core';
2export default class Yarn {
3 config: Interfaces.Config;
4 constructor({ config }: {
5 config: Interfaces.Config;
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}