Initial commit
This commit is contained in:
15
src/types/index.ts
Normal file
15
src/types/index.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user