Files
dspace-angular/src/app/shared/menu/menu-state.model.ts

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;
}