mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
16 lines
410 B
TypeScript
16 lines
410 B
TypeScript
import { MenuID } from './menu-id.model';
|
|
import { MenuSectionIndex } from './menu-section-index.model';
|
|
import { MenuSections } from './menu-sections.model';
|
|
|
|
/**
|
|
* Represents the state of a single menu in the store
|
|
*/
|
|
export interface MenuState {
|
|
id: MenuID;
|
|
collapsed: boolean;
|
|
previewCollapsed: boolean;
|
|
visible: boolean;
|
|
sections: MenuSections;
|
|
sectionToSubsectionIndex: MenuSectionIndex;
|
|
}
|