UNPKG

vue-ganttastic-custom

Version:

A simple and customizable Gantt chart component for Vue.js

30 lines (29 loc) 1.18 kB
import type { GanttBarObject } from "../types"; declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{ bar: GanttBarObject | undefined; modelValue: boolean; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{ bar: GanttBarObject | undefined; modelValue: boolean; }>>>, {}, {}>, { default?(_: { bar: GanttBarObject | undefined; barStart: any; barEnd: any; }): any; }>; export default _default; declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T; declare type __VLS_TypePropsToRuntimeProps<T> = { [K in keyof T]-?: {} extends Pick<T, K> ? { type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>; } : { type: import('vue').PropType<T[K]>; required: true; }; }; declare type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };