8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
import type Page from "../collection/page";
|
|
|
|
export default interface NavbarSubItem {
|
|
id: number;
|
|
name: string;
|
|
URL: string;
|
|
page: Page | null;
|
|
}
|