UNPKG

qsoft-x6-materials-six

Version:
39 lines (38 loc) 1.05 kB
/// <reference types="react" /> import { Node } from '@antv/x6'; export interface ConvertProps { name: string; inputs: string; outputs: 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 Convert: () => ConvertProps; export default Convert;