15 lines
526 B
TypeScript
15 lines
526 B
TypeScript
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';
|
|
|
|
import * as convenience from './smartadata.convenience.js';
|
|
|
|
export { convenience };
|
|
|
|
// to be removed with the next breaking update
|
|
import type * as plugins from './smartdata.plugins.js';
|
|
type IMongoDescriptor = plugins.tsclass.database.IMongoDescriptor;
|
|
export type { IMongoDescriptor };
|