/** * Created by rockyl on 2018/7/5. */ /// export declare function exit(err: any, code?: number): void; export declare function childProcess(cmd: any, params: any, cwd?: string, printLog?: boolean): import("child_process").ChildProcessWithoutNullStreams; export declare function childProcessSync(cmd: any, params: any, cwd?: any, printLog?: boolean): Promise; export declare function gitClone(url: any, path: any, cwd?: any): Promise; export declare function yarnInstall(cwd?: any): Promise; export declare function yarnRun(scriptName: any, cwd?: any): Promise; export declare function getMd5(fileOrBuffer: any): string;