UNPKG

352 BTypeScriptView Raw
1import { ElementUIComponent } from './component'
2
3export type DateType = Date | String | Number
4
5/** Calendar Component */
6export declare class ElCalendar extends ElementUIComponent {
7 /** Binding value */
8 value: DateType
9
10 /** Specify the display range of the calendar */
11 range: DateType[]
12
13 /** First day of week */
14 firstDayOfWeek: number
15}