/** * File: run-command.ts * Description: 执行命令 * Created: 2021-10-01 19:56:40 * Author: yuzhanglong * Email: yuzl1123@163.com */ import execa from 'execa'; export declare const runCommand: (command: string, args?: string[], path?: string) => Promise;