/
githubmirror
/
element
Обзор
Документация
Войти
/
githubmirror
/
element
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
types/timeline-item.d.ts
20 строк
486 B
Zhi Cun
Timeline: add timeline component (#14248)
01 фев 2019, 12:13
Не верифицирован
01 фев 2019, 12:13
f17533a
Код
Авторство
О чём код?
import { ElementUIComponent } from './component' export type TimelineItemPlacement = 'top' | 'bottom' export type TimelineItemType = 'primary' | 'success' | 'warning' | 'danger' | 'info' export type TimelineItemSize = 'normal' | 'large' /** TimelineItem Component */ export declare class ElTimelineItem extends ElementUIComponent { timestamp: string hideTimestamp: boolean placement: TimelineItemPlacement type: TimelineItemType size: TimelineItemSize icon: string }