node.d.ts 395 B

1234567891011
  1. import { Node } from '@antv/x6';
  2. export declare class VueShape<Properties extends VueShape.Properties = VueShape.Properties> extends Node<Properties> {
  3. }
  4. export declare namespace VueShape {
  5. type Primer = 'rect' | 'circle' | 'path' | 'ellipse' | 'polygon' | 'polyline';
  6. interface Properties extends Node.Properties {
  7. primer?: Primer;
  8. }
  9. }
  10. export declare namespace VueShape {
  11. }