import Parallel from './Parallel'; import { RunResult } from './types'; /** * The Parallel node runs all of its children in parallel and is running as long as one of the children is * still running. */ export default class ParallelSelector extends Parallel { nodeType: string; protected calcResult(results: Array): RunResult; } //# sourceMappingURL=ParallelSelector.d.ts.map