15 lines
441 B
TypeScript
15 lines
441 B
TypeScript
import { commitinfo } from './00_commitinfo_data.js';
|
|
|
|
// Export SmartMongo from ts_mongotools
|
|
export { SmartMongo } from './ts_mongotools/index.js';
|
|
|
|
// Export TsmDB module
|
|
export * as tsmdb from './ts_tsmdb/index.js';
|
|
|
|
// Export LocalTsmDb from ts_local
|
|
export { LocalTsmDb } from './ts_local/index.js';
|
|
export type { ILocalTsmDbOptions, ILocalTsmDbConnectionInfo } from './ts_local/index.js';
|
|
|
|
// Export commitinfo
|
|
export { commitinfo };
|