forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~YOUKI/fineui:master to master * commit '348ef5244d29fc3cc00dda1d7f1f2995abf61757': KERNEL-6540 refactor: 补充类型描述es6
Youki
4 years ago
4 changed files with 31 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||||||
|
import { Widget } from '../../core/widget'; |
||||||
|
|
||||||
|
export declare class ListView extends Widget { |
||||||
|
static xtype: string; |
||||||
|
|
||||||
|
restore(): void; |
||||||
|
|
||||||
|
populate<T>(items: T[]): void; |
||||||
|
} |
@ -0,0 +1,8 @@ |
|||||||
|
import { Widget } from '../../../core/widget'; |
||||||
|
|
||||||
|
export declare class IconTextValueCombo extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
|
||||||
|
populate<T>(items: T[]): void; |
||||||
|
} |
@ -0,0 +1,5 @@ |
|||||||
|
import { Layout } from '../../layout'; |
||||||
|
|
||||||
|
export declare class FloatCenterLayout extends Layout { |
||||||
|
static xtype: string; |
||||||
|
} |
Loading…
Reference in new issue