ef79b85d33c08ed5ea280b6c1688670e0c104c0db8e19b8c9a245d359b8bf819e5e03e4147a90fbc025c23367869493100bf3e55b8de9d1dd6c8ab3367e35c 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. }