10 lines
283 B
TypeScript
10 lines
283 B
TypeScript
import { DbCollection } from './smartdata.classes.dbcollection';
|
|
export declare type TDocCreation = 'db' | 'data' | 'mixed';
|
|
export declare class DbDoc<T> {
|
|
collection: DbCollection<T>;
|
|
creationType: TDocCreation;
|
|
constructor();
|
|
save(): void;
|
|
saveDeep(): void;
|
|
}
|