forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~CLAIRE.TANG/fineui:master to master * commit '8544a82ff740b4a73ac3e3a4ecb9e43ee7a55b77': 无jira任务 refactor:类型补充 无jira任务 refactor: 类型补充 无jira任务 refactor: 类型补充es6
Claire.Tang
3 years ago
3 changed files with 46 additions and 0 deletions
@ -0,0 +1,40 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
|
||||
export declare class Expander extends Widget { |
||||
static xtype: string; |
||||
|
||||
static EVENT_EXPAND: string; |
||||
static EVENT_COLLAPSE: string; |
||||
static EVENT_TRIGGER_CHANGE: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_AFTER_INIT: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
static EVENT_AFTER_POPUPVIEW: string; |
||||
static EVENT_BEFORE_HIDEVIEW: string; |
||||
static EVENT_AFTER_HIDEVIEW: string; |
||||
|
||||
populate(items?: any, ...args: any[]): void; |
||||
|
||||
setValue(v: string): void; |
||||
|
||||
getValue(): string; |
||||
|
||||
isViewVisible(): boolean; |
||||
|
||||
isExpanded(): boolean; |
||||
|
||||
showView(): void; |
||||
|
||||
hideView(): void; |
||||
|
||||
getView<T>(): T; |
||||
|
||||
getAllLeaves<T>(): T[]; |
||||
|
||||
getNodeById<T>(id: string): T; |
||||
|
||||
getNodeByValue<T>(v: string): T; |
||||
|
||||
destroy(): void; |
||||
|
||||
} |
Loading…
Reference in new issue