20 lines
538 B
TypeScript
20 lines
538 B
TypeScript
// SmartDB - Wire protocol compatible embedded database server
|
|
|
|
// Export server (the main entry point for using SmartDB)
|
|
export { SmartdbServer } from './server/SmartdbServer.js';
|
|
export type { ISmartdbServerOptions } from './server/SmartdbServer.js';
|
|
|
|
// Export bridge for advanced usage
|
|
export { RustDbBridge } from './rust-db-bridge.js';
|
|
|
|
// Export oplog / debug types
|
|
export type {
|
|
IOpLogEntry,
|
|
IOpLogResult,
|
|
IOpLogStats,
|
|
IRevertResult,
|
|
ICollectionInfo,
|
|
IDocumentsResult,
|
|
ISmartDbMetrics,
|
|
} from './rust-db-bridge.js';
|