UNPKG

399 BTypeScriptView Raw
1import StateBase from './state-base';
2/**
3 * 单状态量的 Action 基类
4 * @class
5 * @ignore
6 */
7declare class ElementSingleState extends StateBase {
8 protected setStateEnable(enable: boolean): void;
9 /**
10 * 切换选中,只允许选中一个
11 */
12 toggle(): void;
13 /**
14 * 取消当前时间影响的状态
15 */
16 reset(): void;
17}
18export default ElementSingleState;