UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

15 lines (14 loc) 298 B
import StateAction from './state'; /** * @ignore * 允许多选的 Action * @class */ declare class ElementMultipleSelected extends StateAction { protected stateName: string; /** * 选中节点,允许多选 */ selected(): void; } export default ElementMultipleSelected;