UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

18 lines (17 loc) 385 B
import { Region } from '../../../interface'; import MaskBase from './base'; /** * @ignore * 矩形的辅助框 Action */ declare class RectMask extends MaskBase { protected shapeType: string; protected getRegion(): Region; protected getMaskAttrs(): { x: number; y: number; width: number; height: number; }; } export default RectMask;