mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 22:13:02 +00:00
12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
import { MenuItemModel } from './menu-item.model';
|
|
import { MenuItemType } from '../../initial-menus-state';
|
|
|
|
/**
|
|
* Model representing an OnClick Menu Section
|
|
*/
|
|
export class OnClickMenuItemModel implements MenuItemModel {
|
|
type = MenuItemType.ONCLICK;
|
|
text: string;
|
|
function: () => {};
|
|
}
|