smartdata/ts/index.ts

15 lines
526 B
TypeScript
Raw Permalink Normal View History

2022-05-16 22:33:44 +00: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 11:38:59 +00:00
2023-02-06 10:43:11 +00:00
import * as convenience from './smartadata.convenience.js';
2023-06-24 23:27:09 +00:00
export { convenience };
2023-02-06 10:43:11 +00:00
2022-06-05 15:19:12 +00:00
// to be removed with the next breaking update
2023-02-06 10:43:11 +00:00
import type * as plugins from './smartdata.plugins.js';
2022-06-05 15:18:13 +00:00
type IMongoDescriptor = plugins.tsclass.database.IMongoDescriptor;
2022-11-01 17:23:57 +00:00
export type { IMongoDescriptor };