/** * Pipeline Engine module — barrel export. * * High-level pipeline orchestration facade composing * PipelineEngine, GateEngine, and EventLedger. * * (arc42 §5.1, §5.2) */ export { PipelineEngineFacade } from './pipeline-engine.js'; export type { PipelineLifecycle, PipelineSummary, AdvanceResult, PipelineEngineOptions, } from './pipeline-engine.js'; export { EventLedger } from './ledger.js'; export type { LedgerEvent } from './ledger.js'; //# sourceMappingURL=index.d.ts.map