claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
11 lines • 372 B
TypeScript
import type { GanttTask } from './types';
import type { Snippet } from 'svelte';
type $$ComponentProps = {
task: GanttTask;
rowHeight?: number;
children?: Snippet;
};
declare const GanttRow: import("svelte").Component<$$ComponentProps, {}, "">;
type GanttRow = ReturnType<typeof GanttRow>;
export default GanttRow;
//# sourceMappingURL=GanttRow.svelte.d.ts.map