Files
chrono/src/types/index.ts
T
Sebastian 3c0ea698b1 refactor: code clean up
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-07-06 22:42:31 -04:00

17 lines
344 B
TypeScript

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