UNPKG

@antv/x6-vue-shape

Version:

X6 shape for rendering vue components.

7 lines (6 loc) 240 B
import { Node, NodeProperties } from '@antv/x6'; export type Primer = 'rect' | 'circle' | 'path' | 'ellipse' | 'polygon' | 'polyline'; export interface Properties extends NodeProperties { primer?: Primer; } export type VueShape = Node;