tibi-docs/types/navigation.d.ts

18 lines
283 B
TypeScript
Raw Normal View History

2024-03-11 18:14:31 +01:00
enum NavigationType {
MainNavigation = 0,
ServiceNavigation = 1,
}
2024-01-27 19:58:35 +01:00
interface Navigation {
2024-03-11 18:14:31 +01:00
type: NavigationType
2024-02-13 17:36:09 +01:00
elements: NavElement[]
2024-01-27 19:58:35 +01:00
}
interface NavElement {
2024-02-13 17:36:09 +01:00
endpoint: boolean
2024-01-27 19:58:35 +01:00
name: string
2024-03-11 18:14:31 +01:00
image?: string
2024-02-13 17:36:09 +01:00
page?: string
elements?: NavElement[]
2024-01-27 19:58:35 +01:00
}