import { IObjectType } from "../../Common/Type"; import { IAdditionalRelationOption } from "./IRelationOption"; export interface IRelationDataOption extends IAdditionalRelationOption { type?: IObjectType; sourceType?: IObjectType; targetType?: IObjectType; sourceRelationKeys?: string[]; targetRelationKeys?: string[]; name?: string; relationName?: string; }