@lui297/vue-ganttastic
Version:
A simple and customizable Gantt chart component for Vue.js
11 lines (10 loc) • 426 B
TypeScript
import type { Plugin } from "vue";
import type { GanttBarObject } from "./types.ts";
import type { ColorScheme } from "./color-schemes.ts";
import "./styles/index.scss";
import GGanttChart from "./components/GGanttChart.vue";
import GGanttRow from "./components/GGanttRow.vue";
export type { ColorScheme, GanttBarObject };
export { GGanttChart, GGanttRow };
export declare const ganttastic: Plugin;
export default ganttastic;