flowappplatform-appbuilder-graphs
Version:
Graph Module for Flow App Builder
23 lines (22 loc) • 490 B
TypeScript
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>;
}