UNPKG

ngx-ui-hero

Version:

Simple, fast and reliable utilities for Angular.

26 lines (25 loc) 556 B
export interface GanttItemModel { label: string; series: Array<GanttSerieModel>; } export interface GanttSerieModel { color?: string; startDate: Date; endDate: Date; data?: any; label?: string; } export interface GanttInternalItemModel { label: string; series: Array<GanttInternalSerieModel>; } export interface GanttInternalSerieModel { color?: string; startDate: Date; endDate: Date; left: number; width: number; daysDiff: number; data?: any; label?: string; }