| 16 | }) |
| 17 | |
| 18 | interface NavbarItem { |
| 19 | path?: string |
| 20 | value?: string |
| 21 | children?: NavbarItem[] |
| 22 | type?: string |
| 23 | text?: string |
| 24 | href?: string |
| 25 | target?: string |
| 26 | img?: string |
| 27 | inner?: string |
| 28 | tag?: string |
| 29 | icon?: string |
| 30 | isOpen?: boolean |
| 31 | } |
| 32 | |
| 33 | export const navbarItems = signal<NavbarItem[]>([ |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected