claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
13 lines • 415 B
TypeScript
interface Props {
tasks: any[];
startField?: string;
endField?: string;
titleField?: string;
progressField?: string;
editable?: boolean;
onTaskEdit?: (task: any, field: string, value: any) => void;
}
declare const GanttView: import("svelte").Component<Props, {}, "">;
type GanttView = ReturnType<typeof GanttView>;
export default GanttView;
//# sourceMappingURL=GanttView.svelte.d.ts.map