import Context from '../Context'; import Executor, { AggregatedResponse, ExecuteHandler } from '../Executor'; import Task from '../Task'; export default class SyncExecutor extends Executor { parallel: boolean; /** * Execute tasks in parallel with a value being passed to each task. * Tasks will synchronize regardless of race conditions and errors. */ run(handler: ExecuteHandler, tasks: Task[], value?: T): Promise>; } //# sourceMappingURL=Sync.d.ts.map