Files
chrono/src/types/index.ts
T
2026-02-10 20:08:03 -05:00

16 lines
294 B
TypeScript

/**
* Chrono Module Types
*
* Local UI types for the Chrono module
*/
// Local UI-specific types
export type CalendarView = 'days' | 'month' | 'agenda';
export interface ViewState {
currentView: CalendarView;
currentDate: Date;
selectedCalendars: string[];
showTasks: boolean;
}