timeline-item.d.ts 486 B

1234567891011121314151617181920
  1. import { ElementUIComponent } from './component'
  2. export type TimelineItemPlacement = 'top' | 'bottom'
  3. export type TimelineItemType = 'primary' | 'success' | 'warning' | 'danger' | 'info'
  4. export type TimelineItemSize = 'normal' | 'large'
  5. /** TimelineItem Component */
  6. export declare class ElTimelineItem extends ElementUIComponent {
  7. timestamp: string
  8. hideTimestamp: boolean
  9. placement: TimelineItemPlacement
  10. type: TimelineItemType
  11. size: TimelineItemSize
  12. icon: string
  13. }