smartdata/ts/index.ts

14 lines
462 B
TypeScript
Raw Normal View History

export * from './classes.db.js';
export * from './classes.collection.js';
export * from './classes.doc.js';
export * from './classes.easystore.js';
export * from './classes.cursor.js';
2019-01-08 12:38:59 +01:00
import * as convenience from './classes.convenience.js';
2023-02-06 11:43:11 +01:00
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
import type * as plugins from './plugins.js';
2022-06-05 17:18:13 +02:00
type IMongoDescriptor = plugins.tsclass.database.IMongoDescriptor;
export type { IMongoDescriptor };