This commit is contained in:
Linus Flood
2024-09-20 10:06:00 +02:00
parent 3834f82497
commit e1418f3ce3
3 changed files with 3 additions and 4 deletions
@@ -1,6 +1,6 @@
import { MenuItems } from "@/types/header"
import type { MenuItem } from "@/types/header"
export interface NavigationMenuListProps {
isMobile: boolean
items: MenuItems
items: MenuItem[]
}
-1
View File
@@ -10,4 +10,3 @@ export type HeaderRefResponse = z.input<typeof getHeaderRefSchema>
export type HeaderResponse = z.input<typeof getHeaderSchema>
export type Header = z.output<typeof getHeaderSchema>
export type MenuItem = z.output<typeof menuItemSchema>
export type MenuItems = z.infer<typeof getHeaderSchema>["menuItems"]