UNPKG

sard-uniapp

Version:

sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

24 lines (23 loc) 635 B
import { type StyleValue } from 'vue'; export interface TimelineProps { rootStyle?: StyleValue; rootClass?: string; } export interface TimelineSlots { default?(props: Record<string, never>): any; } export interface TimelineItemProps { rootStyle?: StyleValue; rootClass?: string; title?: string; time?: string; icon?: string; iconFamily?: string; iconColor?: string; } export interface TimelineItemSlots { default?(props: Record<string, never>): any; icon?(props: Record<string, never>): any; title?(props: Record<string, never>): any; time?(props: Record<string, never>): any; }