import Context from '../Context'; import Executor, { ExecuteHandler } from '../Executor'; import Task from '../Task'; export default class SerialExecutor extends Executor { /** * Execute tasks in sequential order with the output of each * task being passed to the next promise in the chain. */ run(handler: ExecuteHandler, tasks: Task[], value?: T): Promise; } //# sourceMappingURL=Serial.d.ts.map