UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

15 lines (14 loc) 299 B
import StateAction from './state'; /** * 元素 active 的 Action,允许多个元素同时 active * @class * @ignore */ declare class ElementActive extends StateAction { protected stateName: string; /** * Active Element */ active(): void; } export default ElementActive;