qsoft-x6-materials-six
Version:
qsoft-x6-materials
40 lines (39 loc) • 1.07 kB
TypeScript
/// <reference types="react" />
import { Node } from '@antv/x6';
export interface CompoProps {
processId: string;
condition: string;
priority: string;
memo: string;
width: number;
height: number;
shape: string;
ports: {
groups: {
[key: string]: {
position: string;
attrs: {
circle: {
r: number;
magnet: boolean;
stroke: string;
strokeWidth: number;
fill: string;
style: {
visibility: string;
opacity: string;
};
};
};
zIndex: number;
};
};
items: {
id: string;
group: string;
}[];
};
component: (node: Node) => JSX.Element;
}
declare const Compo: () => CompoProps;
export default Compo;