forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~KIRA/fineui:master to master * commit '0cd0a80ef52c86597dba6973f096886940f37657': refactor: 补充描述es6
Kira
4 years ago
2 changed files with 23 additions and 0 deletions
@ -0,0 +1,20 @@
|
||||
import { Widget } from "../../../core/widget"; |
||||
|
||||
export declare class DateCalendarPopup extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_BEFORE_YEAR_MONTH_POPUPVIEW: string; |
||||
|
||||
setMinDate(v: string): void; |
||||
setMaxDate(v: string): void; |
||||
setValue(v: { |
||||
year: number; |
||||
month: number; |
||||
day: number; |
||||
}): void; |
||||
getValue(): { |
||||
year: number; |
||||
month: number; |
||||
day: number; |
||||
} |
||||
} |
Loading…
Reference in new issue