16 lines
334 B
TypeScript
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
|
|
}
|