UNPKG

flowappplatform-appbuilder-graphs

Version:
23 lines (22 loc) 490 B
export interface IComponentDefintion { title: string; imgSrc: string; category: string; type: string; isDeletable: boolean; showOnComponentsPanel: boolean; graphComponentId: string; metadata: { "icon-color": string; }; ports: IPort[]; properties?: any; } export interface IPort { id: string; title: string; description: string; color: string; arcColor?: string; properties?: Array<Object>; }