551b00c8429ae5403f0ab61390413f4048784a3a20c1b9c2e4fe0db712a6554592ab45355fbb0ecfe4ee78035ac997a427a180f5d739d9f702f3ebd1740b32 352 B

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