/** * npm command is platform depending: Winows 'npm.cmd', Mac 'npm' */ export declare const npmCommand: string; /** * Execute a command with arguments. * * @param command - command * @param commandArgs - command arguments, like --global * @returns output */ export declare function spawnCommand(command: string, commandArgs: string[]): Promise; //# sourceMappingURL=command.d.ts.map