Files
apkt-eis/src/utils/interfaces.ts
Dede Fuji Abdul a7ead70332 update aside
2023-10-18 14:14:16 +07:00

9 lines
163 B
TypeScript

interface MenuItemModel {
name: string;
href: string;
icon: any;
expanded: boolean;
children: MenuItemModel[];
}
export type { MenuItemModel }