| 5 | import { TodoMVP } from "./examples/todo.tsx"; |
| 6 | |
| 7 | interface SidebarBaseItem { |
| 8 | id: string; |
| 9 | icon?: string; |
| 10 | title?: string; |
| 11 | url?: string; |
| 12 | component(): JSX.Element; |
| 13 | } |
| 14 | export interface SidebarItem extends SidebarBaseItem { |
| 15 | children?: Array<SidebarBaseItem>; |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected