import { MicsConstant } from '../values'; import { TemplateRef } from '@angular/core'; export interface IListItemOption { name?: string; type?: MicsConstant.ENUM_TYPES; route?: any[]; url?: string; className?: string; iconClassName?: string; onClick?: Function; eventClick?: Function; children?: IListItemOption[]; showWhenHover?: boolean; isNotCompressed?: boolean; hidden?: boolean; disabled?: boolean; template?: TemplateRef; data?: any; }