9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
export type MenuItem = {
|
|
id: string;
|
|
name: string;
|
|
href?: string;
|
|
children?: MenuItem[];
|
|
} & (
|
|
{ href: string; children?: MenuItem[] } |
|
|
{ children: MenuItem[] }
|
|
) |