vue-ganttastic-custom
Version:
A simple and customizable Gantt chart component for Vue.js
11 lines (10 loc) • 448 B
TypeScript
import type { Plugin } from "vue";
import type { GanttBarObject } from "./types.js";
import type { ColorScheme } from "./color-schemes";
import GGanttChart from "./components/GGanttChart.vue";
import GGanttRow from "./components/GGanttRow.vue";
export declare function extendDayjs(): void;
export type { ColorScheme, GanttBarObject };
export { GGanttChart, GGanttRow };
export declare const ganttastic: Plugin;
export default ganttastic;