/** * Public barrel for src/sim/scheduler/. Wave-1+ plans import the scheduler * surface from here; the individual files are internal. */ export type { Clock } from './clock'; export { wallClock, FakeClock } from './clock'; export { TICK_MS, MAX_OFFLINE_MS, drainTicks } from './tick'; export type { TickResult } from './tick'; export { computeOfflineCatchup } from './catchup'; export type { OfflineCatchupSpec } from './catchup';