com.phloxui
Version:
PhloxUI Ng2+ Framework
8 lines (7 loc) • 443 B
TypeScript
import { IMenuModelFactory } from '../component/IMenuModelFactory';
import { ActionModel } from './ActionModel';
export declare class ActionModelMenu extends ActionModel {
items: ActionModel[];
menuModelFactory: IMenuModelFactory;
constructor(iconURL: string, label: string, actionType: string, isShow: Function, isEnabled: Function, actionPerformedHandler: Function, items: ActionModel[], menuModelFactory?: IMenuModelFactory);
}