tibi-docs/types/navigation.d.ts
2024-03-11 17:25:39 +00:00

10 lines
126 B
TypeScript

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