mealie/frontend/types/application-types.ts
2024-11-05 13:57:30 -06:00

12 lines
248 B
TypeScript

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