mealie/frontend/types/application-types.ts
2021-08-01 19:24:47 -08:00

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>