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