backend & types

This commit is contained in:
2024-01-27 18:58:35 +00:00
parent 91bfa0864d
commit 0b4a474180
219 changed files with 5211 additions and 12325 deletions

9
types/navigation.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
interface Navigation {
tree: number
pages: NavElement[]
}
interface NavElement {
name: string
page: string
}