25 lines
790 B
TypeScript
25 lines
790 B
TypeScript
/// <reference types="q" />
|
|
import * as plugins from './smartdata.plugins';
|
|
import { Db } from './smartdata.classes.db';
|
|
export declare class DbCollection<T> {
|
|
collection: plugins.mongodb.Collection;
|
|
constructor(nameArg: string, dbArg: Db);
|
|
/**
|
|
* adds a validation function that all newly inserted and updated objects have to pass
|
|
*/
|
|
addObjectValidation(funcArg: any): void;
|
|
/**
|
|
* finds an object in the DbCollection
|
|
*/
|
|
find(docMatchArg: T | any): plugins.q.Promise<T[]>;
|
|
/**
|
|
* inserts object into the DbCollection
|
|
*/
|
|
insertOne(docArg: T): plugins.q.Promise<void>;
|
|
/**
|
|
* inserts many objects at once into the DbCollection
|
|
*/
|
|
insertMany(docArrayArg: T[]): plugins.q.Promise<void>;
|
|
private checkDoc(doc);
|
|
}
|