Fixed crash with function stringify

This commit is contained in:
Alexis
2024-06-08 14:18:19 +02:00
parent f963116018
commit 3002ae593c
5 changed files with 27 additions and 19 deletions

View File

@@ -1,7 +1,9 @@
export type SidebarMenuActionType = "event-search"
export interface SidebarMenuItem {
phIcon: Component
tooltip: string
clickHandler?: () => void
action?: SidebarMenuActionType
to?: string
}