/** * Public API for the checkpoints module. * * The coordinator imports from this barrel — never from individual files. * The noop mechanism is NOT re-exported here: it is opaque to the coordinator, * registered by registry.ts at module init, and retrieved via getCheckpointMechanism("noop"). */ export type { CheckpointId, CheckpointArtifact, CheckpointMechanism, CheckpointOutcome } from "./types.js"; export { registerCheckpointMechanism, getCheckpointMechanism, getCheckpointMechanismFor, resolveCheckpointMechanismName, type CheckpointOverrideConfig, } from "./registry.js"; export { CHECKPOINT_SITES, type CheckpointSite } from "./sites.js"; //# sourceMappingURL=index.d.ts.map