Browse Source
Merge in VISUAL/fineui from ~CLAIRE.TANG/fineui:master to master * commit 'a32eabe467082358372ab12d4757932279874197': KERNEL-7587 refactor: 类型补充es6
Claire.Tang
4 years ago
4 changed files with 43 additions and 0 deletions
@ -0,0 +1,13 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
|
||||
export declare class SmallTextValueCombo extends Widget { |
||||
static xtype: string; |
||||
|
||||
static EVENT_CHANGE: string; |
||||
|
||||
populate(items: any): void; |
||||
|
||||
setValue(v: string): void; |
||||
|
||||
getValue(): string; |
||||
} |
@ -0,0 +1,10 @@
|
||||
import { PopupView } from "../../base/layer/layer.popup"; |
||||
|
||||
|
||||
export declare class MultiPopupView extends PopupView { |
||||
static xtype: string; |
||||
|
||||
static EVENT_CHANGE: string; |
||||
|
||||
static EVENT_CLICK_TOOLBAR_BUTTON: string; |
||||
} |
@ -0,0 +1,11 @@
|
||||
import { Trigger } from "../../base/single/trigger/trigger"; |
||||
|
||||
export declare class TextTrigger extends Trigger { |
||||
static xtype: string; |
||||
|
||||
setTextCls(cls: string): void; |
||||
|
||||
setText(text: string): void; |
||||
|
||||
setTipType(v: string): void; |
||||
} |
Loading…
Reference in new issue