Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | export interface NavItemConfig {
"data-event"?: string;
/**
* NavItems to be shown as a descendant of this NavItem
*/
children: NavItemConfig[];
/**
* A unique identifier for the navItem
*/
id: string;
/**
* The text to be displayed for the navItem
*/
title: string;
/**
* An optional path for the navItem, allowing it to behave as a link
*/
path?: string;
}
export type GetIsActiveItemFunction = (
item: Omit<NavItemConfig, "data-event">
) => boolean;
|