import { RelationType } from "./data-object"; export interface IRelation { get id(): string; get targetId(): string; get type(): RelationType; get name(): string; get versionId(): string; }