ff-webpage/types/component/navbarSubItem.ts

9 lines
154 B
TypeScript
Raw Normal View History

2024-11-01 13:15:09 +00:00
import type Page from "../collection/page";
export default interface NavbarSubItem {
id: number;
name: string;
URL: string;
page: Page | null;
}