/** * Describes a hot/cold snapshot set. Produced by the snapshot builder, * consumed by `attachSnapshotIndex`. Filenames are derived from `cold` * via `cold-${yearMonth}.duckdb`; hot is always `hot.duckdb` when * `hot: true`. */ interface SnapshotIndex { version: 1; builtAt: string; cold: string[]; hot: boolean; hotDays: number; } export { SnapshotIndex };