UNPKG

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