wangeditor
Version:
wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费
14 lines (13 loc) • 406 B
TypeScript
/**
* @description 下拉菜单 Class
* @author wangfupeng
*/
import { DomElement } from '../../utils/dom-core';
import Editor from '../../editor/index';
import Menu from './Menu';
import DropList, { DropListConf } from './DropList';
declare class DropListMenu extends Menu {
dropList: DropList;
constructor($elem: DomElement, editor: Editor, conf: DropListConf);
}
export default DropListMenu;