mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-12 16:14:02 -07:00
11 lines
213 B
TypeScript
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>;
|