registry.d.ts 283 B

12345678910
  1. import { Node } from '@antv/x6';
  2. export type VueShapeConfig = Node.Properties & {
  3. shape: string;
  4. component: any;
  5. inherit?: string;
  6. };
  7. export declare const shapeMaps: Record<string, {
  8. component: any;
  9. }>;
  10. export declare function register(config: VueShapeConfig): void;