claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
15 lines • 522 B
TypeScript
interface Props {
events: any[];
dateField?: string;
endDateField?: string;
titleField?: string;
colorField?: string;
editable?: boolean;
onEventClick?: (event: any) => void;
onEventEdit?: (event: any, field: string, value: any) => void;
view?: 'month' | 'week' | 'day' | 'agenda';
}
declare const CalendarView: import("svelte").Component<Props, {}, "">;
type CalendarView = ReturnType<typeof CalendarView>;
export default CalendarView;
//# sourceMappingURL=CalendarView.svelte.d.ts.map