15 lines
526 B
TypeScript
Raw Normal View History

2022-05-17 00:33:44 +02:00
export * from './smartdata.classes.db.js';
export * from './smartdata.classes.collection.js';
export * from './smartdata.classes.doc.js';
export * from './smartdata.classes.easystore.js';
export * from './smartdata.classes.cursor.js';
2019-01-08 12:38:59 +01:00
2023-02-06 11:43:11 +01:00
import * as convenience from './smartadata.convenience.js';
2023-06-25 01:27:09 +02:00
export { convenience };
2023-02-06 11:43:11 +01:00
2022-06-05 17:19:12 +02:00
// to be removed with the next breaking update
2023-02-06 11:43:11 +01:00
import type * as plugins from './smartdata.plugins.js';
2022-06-05 17:18:13 +02:00
type IMongoDescriptor = plugins.tsclass.database.IMongoDescriptor;
2022-11-01 18:23:57 +01:00
export type { IMongoDescriptor };