9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
|
import type BaseImage from "./baseImage";
|
||
|
import type NavbarItem from "./itemsNavbarItem";
|
||
|
|
||
|
export default interface Navbar {
|
||
|
id: number;
|
||
|
logo: BaseImage;
|
||
|
navbar_items: NavbarItem[];
|
||
|
}
|