UNPKG

@lui297/vue-ganttastic

Version:

A simple and customizable Gantt chart component for Vue.js

20 lines (19 loc) 525 B
import type { DateTime } from "luxon"; import type { CSSProperties } from "vue"; export type GanttBarObject = { [key: string]: any; ganttBarConfig: { id: string; label?: string; html?: string; hasHandles?: boolean; immobile?: boolean; bundle?: string; pushOnOverlap?: boolean; dragLimitLeft?: number; dragLimitRight?: number; style?: CSSProperties; class?: string; }; }; export type GanttDateType = string | Date | DateTime;