ionic-orm-2
Version:
Data-mapper ORM for Ionic WebSQL and SQLite
12 lines (11 loc) • 345 B
TypeScript
import { ObjectLiteral } from "../../common/ObjectLiteral";
/**
*/
export declare class InsertOperation {
target: Function | string;
entity: any;
entityId: ObjectLiteral | undefined;
date: Date;
treeLevel: number;
constructor(target: Function | string, entity: any, entityId?: ObjectLiteral | undefined, date?: Date);
}