mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-24 10:57:23 -08:00
12 lines
213 B
TypeScript
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>;
|