gg-y-ui
Version:
An enterprise-class UI design language and Vue-based implementation for web
30 lines (24 loc) • 623 B
TypeScript
import { YUIComponent } from './component';
/** TimelineItem Component */
export declare class YTimelineItem extends YUIComponent {
/**
* determine the date show
*/
timestamp: number | Date | { date: string; time: string };
/**
* custom node style
*/
nodeStyle: object;
/**
* determine whether the node icon, use by Icon component
*/
icon: string;
/**
* determine whether the tail color
*/
tailColor: string;
/**
* determine whether the node status, match the specific icon
*/
status: 'wating' | 'warnning' | 'completed' | 'processing';
}