1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-23 07:09:41 +02:00
mealie/frontend/types/application-types.ts

12 lines
213 B
TypeScript
Raw Normal View History

2021-08-01 19:24:47 -08:00
export interface SideBarLink {
key?: string;
icon: string;
to?: string;
href?: string;
title: string;
children?: SideBarLink[];
restricted: boolean;
2021-08-01 19:24:47 -08:00
}
export type SidebarLinks = Array<SideBarLink>;