forked from fanruan/fineui
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