feat(gantt): add dateType field to GanttBarModel meta

This commit is contained in:
kolaente 2026-02-18 21:45:53 +01:00
parent 50983a9bb2
commit eefa48052b
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@ export interface GanttBarModel {
label?: string
color?: string
hasActualDates?: boolean
dateType?: 'both' | 'startOnly' | 'endOnly'
isDone?: boolean
task?: unknown
}