forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~YOUKI/fineui:master to master * commit 'd5db4b6b41e479a0f6bc26d7cc69d3a2ee520b0c': KERNEL-6465 refactor: 补充类型es6
Youki
4 years ago
4 changed files with 35 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||||
|
import { Widget } from '../../core/widget'; |
||||||
|
|
||||||
|
export declare class VirtualGroup extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
|
||||||
|
addItems<T>(items: T[]): void; |
||||||
|
|
||||||
|
prependItems<T>(items: T[]): void; |
||||||
|
|
||||||
|
getNotSelectedValue<T>(): T[]; |
||||||
|
|
||||||
|
getValue<T>(): T[]; |
||||||
|
|
||||||
|
populate(items?: any, ...args: any[]): void |
||||||
|
} |
@ -0,0 +1,5 @@ |
|||||||
|
import { Layout } from '../layout'; |
||||||
|
|
||||||
|
export declare class GridLayout extends Layout { |
||||||
|
static xtype: string; |
||||||
|
} |
@ -0,0 +1,5 @@ |
|||||||
|
import { Layout } from '../../layout'; |
||||||
|
|
||||||
|
export declare class CenterLayout extends Layout { |
||||||
|
static xtype: string; |
||||||
|
} |
Loading…
Reference in new issue