@push.rocks/smartdata
Version:
An advanced library for NoSQL data organization and manipulation using TypeScript with support for MongoDB, data validation, collections, and custom data types.
9 lines (8 loc) • 334 B
TypeScript
import { SmartdataCollection } from './smartdata.classes.collection.js';
import { SmartdataDb } from './smartdata.classes.db.js';
export declare class CollectionFactory {
collections: {
[key: string]: SmartdataCollection<any>;
};
getCollection: (nameArg: string, dbArg: SmartdataDb) => SmartdataCollection<any>;
}