1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-22 22:59:41 +02:00
mealie/frontend/types/application-types.ts
2024-09-15 11:42:58 +00:00

11 lines
213 B
TypeScript

export interface SideBarLink {
key?: string;
icon: string;
to?: string;
href?: string;
title: string;
children?: SideBarLink[];
restricted: boolean;
}
export type SidebarLinks = Array<SideBarLink>;