mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-05 20:42:23 -07:00
12 lines
248 B
TypeScript
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>;
|