Files
chrono/src/types/index.ts
T
Sebastian df531908f3 refactor: code clean up
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-07-06 21:09:07 -04: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;
}