mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 09:01:21 +00:00
11 lines
181 B
TypeScript
11 lines
181 B
TypeScript
export type NavItem = {
|
|
title: string;
|
|
href: string;
|
|
disabled?: boolean;
|
|
};
|
|
|
|
export type MainNavItem = NavItem;
|
|
|
|
export type NavigationConfig = {
|
|
mainNav: MainNavItem[];
|
|
};
|