1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-19 05:09:40 +02:00
mealie/frontend/types/application-types.ts

10 lines
182 B
TypeScript
Raw Normal View History

2021-08-01 19:24:47 -08:00
import { TranslateResult } from "vue-i18n";
export interface SideBarLink {
icon: string;
to: string;
title: TranslateResult;
2021-08-01 19:24:47 -08:00
}
export type SidebarLinks = Array<SideBarLink>;