UNPKG

@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) 314 B
import { SmartdataCollection } from './classes.collection.js'; import { SmartdataDb } from './classes.db.js'; export declare class CollectionFactory { collections: { [key: string]: SmartdataCollection<any>; }; getCollection: (nameArg: string, dbArg: SmartdataDb) => SmartdataCollection<any>; }