import { ICompiler } from '../Compiler'; /** * @category composable/executors */ export interface IExecutor { compiler: ICompiler; binaryPath: string; execute(): O; }