mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-22 14:49:40 +02:00
9 lines
No EOL
183 B
TypeScript
9 lines
No EOL
183 B
TypeScript
import { TranslateResult } from "vue-i18n";
|
|
|
|
export interface SideBarLink {
|
|
icon: string
|
|
to: string
|
|
title: TranslateResult
|
|
}
|
|
|
|
export type SidebarLinks = Array<SideBarLink> |