mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
12 lines
300 B
TypeScript
12 lines
300 B
TypeScript
import { MenuItemType } from '../../initial-menus-state';
|
|
import { MenuItemModel } from './menu-item.model';
|
|
|
|
/**
|
|
* Model representing an Search Bar Menu Section
|
|
*/
|
|
export class SearchMenuItemModel implements MenuItemModel {
|
|
type = MenuItemType.SEARCH;
|
|
placeholder: string;
|
|
action: string;
|
|
}
|