SourceTermAnalysisSystem_vue/node_modules/@antv/x6/es/shape/util.d.ts
2026-05-15 10:22:44 +08:00

10 lines
464 B
TypeScript

import { Cell, Node } from '../model';
import { Markup } from '../view';
import { Base } from './base';
export declare function getMarkup(tagName: string, selector?: string): Markup;
export declare function getImageUrlHook(attrName?: string): Cell.PropHook<Cell.Metadata, Cell<Cell.Properties>>;
export declare function createShape(shape: string, config: Node.Config, options?: {
selector?: string;
parent?: Node.Definition | typeof Base;
}): typeof Base;