Files
smartmongo/ts/index.ts

15 lines
441 B
TypeScript
Raw Normal View History

2022-05-17 18:28:09 +02:00
import { commitinfo } from './00_commitinfo_data.js';
2021-12-20 15:58:23 +01:00
// Export SmartMongo from ts_mongotools
export { SmartMongo } from './ts_mongotools/index.js';
2021-12-20 15:58:23 +01:00
// Export TsmDB module
export * as tsmdb from './ts_tsmdb/index.js';
2021-12-20 15:58:23 +01:00
// Export LocalTsmDb from ts_local
export { LocalTsmDb } from './ts_local/index.js';
export type { ILocalTsmDbOptions, ILocalTsmDbConnectionInfo } from './ts_local/index.js';
2022-06-06 16:51:41 +02:00
// Export commitinfo
export { commitinfo };