UNPKG

@xpyjs/gantt-vue

Version:

Vue wrapper for x-gantt

14 lines (12 loc) 627 B
import { default as GanttVue } from './components/GanttVue.vue'; import { XGanttVueSlots, XGanttVueProps, XGanttVueEmits } from './components/props'; import { App } from 'vue'; export type XGanttInstance = InstanceType<typeof GanttVue>; export type { XGanttVueProps, XGanttVueEmits, XGanttVueSlots }; declare const XGanttVue: typeof GanttVue & { install: (app: App) => void; }; export { XGanttVue }; export default XGanttVue; export type { IOptions, IOptionConfig, EmitData, EventMap, ILink, ErrorType, Dayjs, Colorjs, XGanttUnit } from '@xpyjs/gantt-core'; export { generateId, dayjs, colorjs } from '@xpyjs/gantt-core';