UNPKG

479 BTypeScriptView Raw
1import { ShapeAttrs } from '../../dependents';
2import Action from './base';
3/**
4 * 背景框的 Action
5 * @ignore
6 */
7declare class ActiveRegion extends Action {
8 private items;
9 private regionPath;
10 /**
11 * 显示
12 * @param {ShapeAttrs} style region-path 的样式
13 */
14 show(args?: {
15 style: ShapeAttrs;
16 }): void;
17 /**
18 * 隐藏
19 */
20 hide(): void;
21 /**
22 * 销毁
23 */
24 destroy(): void;
25}
26export default ActiveRegion;