/// import { Executor } from './Executor'; import { ICompiler } from '../Compiler'; import { ChildProcess } from "child_process"; /** * @category composable/executors */ export declare class CommandExecutor extends Executor { static execute(compiler?: ICompiler): ChildProcess; compiler: ICompiler; constructor(compiler?: ICompiler); getCommandArguments(): string[]; execute(): ChildProcess; toString(): string; }