whensday-calendar-lib
Version:
A flexible calendar library with Whensday/Gregorian calendar systems, event management, and customizable UI components
19 lines • 648 B
TypeScript
import React from 'react';
interface WeekViewProps {
displayDate: any;
events: any[];
schedulesByDay: Map<string, any[]>;
layersById: Map<string, any>;
system: string;
hourHeight: number;
onEventClick: (event: any) => void;
onEventAdd: (date: any, time?: string) => void;
onEventMove?: (eventId: string, newDayTimestamp: number, newStartTime?: string) => void;
onDateClick: (date: any) => void;
showTodayIndicator: boolean;
showHolidayIndicators: boolean;
showScheduleIndicators: boolean;
}
export declare const WeekView: React.FC<WeekViewProps>;
export {};
//# sourceMappingURL=WeekView.d.ts.map