This is barely functionnal, but at least it can display some data without crashing Most other functionnalities other than displaying events are broken, and so are the relative date operations, they need to be fixed asap
7 lines
100 B
TypeScript
7 lines
100 B
TypeScript
export interface CalendarMonth {
|
|
id: number
|
|
days: number,
|
|
name: string,
|
|
position: number,
|
|
}
|