jordium-gantt-vue3
Version:
A Vue 3 Gantt chart component for project management, task scheduling, resource planning, calendar, resource usage and timeline visualization.
20 lines (19 loc) • 733 B
TypeScript
import { Task } from '../models/classes/Task';
interface Props {
modelValue?: number[];
tasks: Task[];
currentTaskId?: number;
label?: string;
placeholder?: string;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: number[]) => any;
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
"onUpdate:modelValue"?: ((value: number[]) => any) | undefined;
}>, {
label: string;
placeholder: string;
modelValue: number[];
currentTaskId: number;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;