ff-webpage/types/component/itemsNavbarItem.ts

11 lines
223 B
TypeScript
Raw Normal View History

import type NavbarSubItem from "./itemsNavbarSubItem";
2024-11-01 13:15:09 +00:00
export default interface NavbarItem {
id: number;
name: string;
URL: string;
default_active_child: string;
page: any;
navbar_sub_items: NavbarSubItem[];
}