UNPKG

flowappplatform-appbuilder-graphs

Version:
13 lines (12 loc) 265 B
export interface IComponent { id: string; graphComponentId: string; connections: IConnection[]; x: number; y: number; } export interface IConnection { fromPortId: string; toComponentId: string; fromComponentId: string; }