tibi-starter/types/navigation.d.ts
2024-01-27 18:58:35 +00:00

10 lines
126 B
TypeScript

interface Navigation {
tree: number
pages: NavElement[]
}
interface NavElement {
name: string
page: string
}