fix more type things

This commit is contained in:
2024-05-13 00:08:11 +02:00
parent 780e2c7fed
commit 794818db13
3 changed files with 14 additions and 10 deletions

View File

@ -95,8 +95,8 @@ function isDefined<T>(val: T | undefined | null): val is T {
interface EventsByDate {
[yearMonth: string]: {
[week: number]: {
[day: number]: SingularEvent[];
[week: string]: {
[day: string]: SingularEvent[];
};
};
}