mealie/frontend/types/application-types.ts
2024-09-15 11:42:58 +00:00

12 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>;