Initial commit

This commit is contained in:
2025-10-02 08:54:03 +02:00
commit ea54638227
1642 changed files with 53677 additions and 0 deletions

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

@@ -0,0 +1,20 @@
enum NavigationType {
MainNavigation = 0,
ServiceNavigation = 1,
LegalNavigation = 2,
}
interface NavigationEntry {
type: NavigationType
elements: NavElement[]
}
interface NavigationElement {
name: string
page?: string
hash?: string
external?: boolean
externalUrl?: string
type: "content" | "bigcommerce"
elements?: NavigationElement[]
}