added type doc to menu related files

This commit is contained in:
lotte
2018-12-11 15:47:41 +01:00
parent c0a4fdc797
commit e13d743e32
35 changed files with 765 additions and 231 deletions

View File

@@ -0,0 +1,10 @@
import { MenuItemType } from '../../initial-menus-state';
import { MenuItemModel } from './menu-item.model';
/**
* Model representing an Text Menu Section
*/
export class TextMenuItemModel implements MenuItemModel {
type = MenuItemType.TEXT;
text: string;
}