ionic-orm-2
Version:
Data-mapper ORM for Ionic WebSQL and SQLite
13 lines (12 loc) • 519 B
TypeScript
import { RelationMetadata } from "../../metadata/RelationMetadata";
/**
*/
export declare class UpdateByInverseSideOperation {
entityTarget: Function | string;
fromEntityTarget: Function | string;
operationType: "update" | "remove";
targetEntity: any;
fromEntity: any;
fromRelation: RelationMetadata;
constructor(entityTarget: Function | string, fromEntityTarget: Function | string, operationType: "update" | "remove", targetEntity: any, fromEntity: any, fromRelation: RelationMetadata);
}