2026-03-26 16:03:25 +00:00
|
|
|
import { commitinfo } from './00_commitinfo_data.js';
|
|
|
|
|
|
|
|
|
|
// Export core SmartDB module
|
|
|
|
|
export * from './ts_smartdb/index.js';
|
|
|
|
|
|
|
|
|
|
// Export LocalSmartDb
|
|
|
|
|
export { LocalSmartDb } from './ts_local/index.js';
|
|
|
|
|
export type { ILocalSmartDbOptions, ILocalSmartDbConnectionInfo } from './ts_local/index.js';
|
|
|
|
|
|
2026-04-04 19:49:47 +00:00
|
|
|
// Export migration
|
|
|
|
|
export { StorageMigrator } from './ts_migration/index.js';
|
|
|
|
|
|
2026-03-26 16:03:25 +00:00
|
|
|
// Export commitinfo
|
|
|
|
|
export { commitinfo };
|
2026-04-02 17:02:03 +00:00
|
|
|
|
|
|
|
|
// Re-export oplog / debug types for convenience
|
|
|
|
|
export type {
|
|
|
|
|
IOpLogEntry,
|
|
|
|
|
IOpLogResult,
|
|
|
|
|
IOpLogStats,
|
|
|
|
|
IRevertResult,
|
|
|
|
|
ICollectionInfo,
|
|
|
|
|
IDocumentsResult,
|
|
|
|
|
ISmartDbMetrics,
|
|
|
|
|
} from './ts_smartdb/index.js';
|