forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~ALAN/fineui:master to master * commit '26c2ce3fcd9f64cef5f83dd479356833c968ede0': KERNEL-6537 补充类型定义 KERNEL-6537 补充类型定义 KERNEL-6537 补充类型定义es6
alan
4 years ago
4 changed files with 34 additions and 0 deletions
@ -0,0 +1,8 @@
|
||||
import { Single } from "../single"; |
||||
|
||||
export declare class Img extends Single { |
||||
static xtype: string; |
||||
|
||||
setSrc(src: string): void; |
||||
getSrc(): string; |
||||
} |
@ -0,0 +1,10 @@
|
||||
import { Widget } from "../../../core/widget"; |
||||
|
||||
export declare class EditorIconCheckCombo extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_EMPTY: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
} |
@ -0,0 +1,7 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
|
||||
export declare class LinearSegment extends Widget { |
||||
static xtype: string; |
||||
|
||||
setEnabledValue(v: any): void; |
||||
} |
Loading…
Reference in new issue