forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~ZHENFEI.LI/fineui:master to master * commit 'f6c7b3d9a4e056284f4dd70d60c02ef95acbf759': KERNEL-7586 refactor: ts类型补充es6
Zhenfei.Li
4 years ago
11 changed files with 60 additions and 2 deletions
@ -0,0 +1,11 @@ |
|||||||
|
import { Widget } from "../../core/widget"; |
||||||
|
|
||||||
|
export declare class DynamicDateTimePane extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_BEFORE_YEAR_MONTH_POPUPVIEW: string; |
||||||
|
|
||||||
|
setMinDate(minDate: string): void; |
||||||
|
|
||||||
|
setMaxDate(minDate: string): void; |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
import { Single } from "../../base/single/single"; |
||||||
|
import { DynamicDataComboValue } from "../dynamicdate/dynamicdate.combo"; |
||||||
|
|
||||||
|
export declare class TimeInterval extends Single { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_VALID: string; |
||||||
|
static EVENT_ERROR: string; |
||||||
|
|
||||||
|
getValue(): { |
||||||
|
start: DynamicDataComboValue; |
||||||
|
end: DynamicDataComboValue; |
||||||
|
}; |
||||||
|
|
||||||
|
setMinDate(minDate: string): void; |
||||||
|
|
||||||
|
setMaxDate(minDate: string): void; |
||||||
|
} |
Loading…
Reference in new issue