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