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