-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathmonth-picker.d.ts
46 lines (39 loc) · 1.03 KB
/
month-picker.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { DatepickerCommon } from "./common";
import { Moment } from "moment";
export declare class MonthPicker extends DatepickerCommon {
/**
* to set default date
* @type Moment
*/
defaultValue: Moment;
/**
* to set default picker date
* @type Moment
*/
defaultPickerValue: Moment;
/**
* to set the date format, refer to moment.js
* @default 'YYYY-MM'
* @type string
* @see http://momentjs.com
*/
format: string;
/**
* Custom month cell content render method by setting a scoped slot
* @type Function (slot="monthCellContentRender", slot-scope="date, locale")
*/
monthCellContentRender: Function;
/**
* render extra footer in panel by setting a scoped slot
* @type any (slot="renderExtraFooter")
*/
renderExtraFooter: any;
/**
* to set date
* @type Moment
*/
value: Moment;
}