vue-ganttastic-custom
Version:
A simple and customizable Gantt chart component for Vue.js
17 lines (16 loc) • 452 B
TypeScript
export default function useTimeaxisUnits(): {
timeaxisUnits: import("vue").ComputedRef<{
upperUnits: {
label: string;
value?: string | undefined;
date: Date;
width?: string | undefined;
}[];
lowerUnits: {
label: string;
value?: string | undefined;
date: Date;
width?: string | undefined;
}[];
}>;
};