mcgrizz/types/nav.ts

6 lines
111 B
TypeScript

export type NavItem = {
title: string;
href: string;
external?: boolean;
children?: NavItem[]
}