UNPKG

@miyax/ganttjs

Version:
13 lines (11 loc) 173 B
export type Task = { id: string; name: string; start: Date; end: Date; color: string; description?: string; } export type TaskCollection = { tasks: Task[]; }