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

20 lines
639 B
TypeScript

import { NumberExt } from '@antv/x6-common';
import { Attr } from '../attr';
import { NodeView } from '../../view/node';
import { EdgeView } from '../../view/edge';
import { ToolsView } from '../../view/tool';
export declare class Boundary extends ToolsView.ToolItem<EdgeView | NodeView, Boundary.Options> {
protected onRender(): void;
update(): this;
}
export declare namespace Boundary {
interface Options extends ToolsView.ToolItem.Options {
padding?: NumberExt.SideOptions;
rotate?: boolean;
useCellGeometry?: boolean;
attrs?: Attr.SimpleAttrs;
}
}
export declare namespace Boundary {
}