forked from fanruan/fineui
10 lines
275 B
10 lines
275 B
5 years ago
|
import { _Single } from "../../../base/single/single";
|
||
|
export interface _IconChangeButton extends _Single {
|
||
|
isSelected(): boolean;
|
||
|
setSelected(v: boolean): void;
|
||
|
setIcon(cls: string): void;
|
||
|
}
|
||
|
export interface _IconChangeButtonStatic {
|
||
|
EVENT_CHANGE: string;
|
||
|
}
|