ngx-vertical-timeline
Version:
Module for creating Responsive Vertical Timeline
18 lines (17 loc) • 364 B
TypeScript
export interface TimelineItem {
label?: string;
icon?: string;
command?: (event?: any) => void;
url?: string;
routerLink?: any;
expanded?: boolean;
disabled?: boolean;
visible?: boolean;
active?: boolean;
style?: any;
color?: string;
content?: string;
styleClass?: string;
title?: string;
id?: string;
}