Changed ways to access calendars

This commit is contained in:
Alexis
2024-06-13 19:10:03 +02:00
parent a7cb032b12
commit bc29129546
12 changed files with 191 additions and 63 deletions

View File

@@ -1,7 +1,10 @@
import type { Calendar } from "./CalendarConfig"
export interface World {
id: number
uuid: string
name: string
description?: string
color?: string
color?: string,
calendars?: Calendar[]
}