You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
716 B
35 lines
716 B
// 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 WeekPicker 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-wos'
|
|
* @type string
|
|
* @see http://momentjs.com
|
|
*/
|
|
format: string;
|
|
|
|
/**
|
|
* to set date
|
|
* @type Moment
|
|
*/
|
|
value: Moment;
|
|
}
|