forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~GUYI/fineui:master to master * commit '7fba2f63faaebf2033039efe5fc1c24c98292e60': 无jira任务,补充SearchTextValueCombo描述es6
Guyi
4 years ago
2 changed files with 16 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||||||
|
import { _Widget } from "../../../core/widget"; |
||||||
|
|
||||||
|
export interface _SearchTextValueCombo extends _Widget { |
||||||
|
populate(items: any[]): void; |
||||||
|
|
||||||
|
setValue(v: any): void; |
||||||
|
|
||||||
|
getValue<T>(): T[]; |
||||||
|
} |
||||||
|
|
||||||
|
export interface _SearchTextValueComboStatic { |
||||||
|
EVENT_CHANGE: string; |
||||||
|
EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
} |
Loading…
Reference in new issue