Files
leim-tools/components/global/sidebar/SidebarProps.ts
2024-08-20 09:15:05 +02:00

16 lines
334 B
TypeScript

import type { ShallowRef } from "vue"
export type SidebarMenuActionType = "event-search"
export interface SidebarMenuItem {
phIcon: ShallowRef // use shallowRef to build phIcon
tooltip: string
action?: SidebarMenuActionType
to?: string
}
export interface SidebarProps {
menuItems: SidebarMenuItem[],
isHome?: boolean
}