You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
648 B

import execa from 'execa';
declare type Options = {
preferYarn?: boolean;
silent?: boolean;
root: string;
};
export declare function init(options: Options): execa.ExecaChildProcess;
export declare function install(packageNames: Array<string>, options: Options): execa.ExecaChildProcess;
export declare function installDev(packageNames: Array<string>, options: Options): execa.ExecaChildProcess;
export declare function uninstall(packageNames: Array<string>, options: Options): execa.ExecaChildProcess;
export declare function installAll(options: Options): execa.ExecaChildProcess;
export {};
//# sourceMappingURL=packageManager.d.ts.map