/** * Offline governance state store — barrel export. * * Re-exports the three core modules and all shared types so consumers * can import everything from a single path: * * import { OfflineStore, Outbox, SyncMetaManager } from "../offline/index.js"; */ export { OfflineStore } from "./store.js"; export { Outbox } from "./outbox.js"; export { SyncMetaManager } from "./sync-meta.js"; export type { GatePipeline, GateStatus, EvidenceEntry, ReviewRecord, Initiative, OutboxEntry, OutboxOperation, ConflictRecord, SyncMeta, } from "./types.js"; //# sourceMappingURL=index.d.ts.map