2023-08-17 18:51:39 +02:00
|
|
|
import { IconName } from '@fortawesome/fontawesome-common-types';
|
|
|
|
|
|
|
|
export type MenuItem = {
|
|
|
|
title: string;
|
|
|
|
i18n: string;
|
|
|
|
faIcon: IconName;
|
|
|
|
link: string;
|
2024-07-13 00:41:45 +09:00
|
|
|
isExternal?: boolean;
|
2023-08-17 18:51:39 +02:00
|
|
|
};
|
|
|
|
export type MenuGroup = {
|
|
|
|
title: string;
|
|
|
|
i18n: string;
|
|
|
|
items: MenuItem[];
|
|
|
|
}
|