src/modules/app-menu/components/app-menu-section.intf.ts
StarkMenuSection interface
Properties |
label |
label:
|
Type : string
|
Text to be displayed as the label in the header of the menu section (dynamically translated via the Translate service if the provided text is defined in the translation keys). |
menuGroups |
menuGroups:
|
Type : StarkMenuGroup[]
|
Array of menu groups to include in this section. |
import { StarkMenuGroup } from "./app-menu-group.intf";
/**
* StarkMenuSection interface
*/
export interface StarkMenuSection {
/**
* Text to be displayed as the label in the header of the menu section
* (dynamically translated via the Translate service if the provided text is defined in the translation keys).
*/
label: string;
/**
* Array of menu groups to include in this section.
*/
menuGroups: StarkMenuGroup[];
}