6 lines
111 B
TypeScript
6 lines
111 B
TypeScript
export type NavItem = {
|
|
title: string;
|
|
href: string;
|
|
external?: boolean;
|
|
children?: NavItem[]
|
|
} |