zwischenstand

This commit is contained in:
2024-02-13 16:36:09 +00:00
parent 0b4a474180
commit 49e55a90f7
173 changed files with 15832 additions and 1359 deletions

View File

@@ -1,9 +1,12 @@
interface Navigation {
tree: number
pages: NavElement[]
elements: NavElement[]
}
interface NavElement {
endpoint: boolean
name: string
page: string
image: FileField
page?: string
elements?: NavElement[]
}