23 lines
556 B
TypeScript
23 lines
556 B
TypeScript
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';
|
|
|
|
// Export commitinfo
|
|
export { commitinfo };
|
|
|
|
// Re-export oplog / debug types for convenience
|
|
export type {
|
|
IOpLogEntry,
|
|
IOpLogResult,
|
|
IOpLogStats,
|
|
IRevertResult,
|
|
ICollectionInfo,
|
|
IDocumentsResult,
|
|
ISmartDbMetrics,
|
|
} from './ts_smartdb/index.js';
|