UNPKG

wangeditor

Version:

wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费

15 lines (14 loc) 435 B
/** * @description image 菜单 panel tab 配置 * @author wangfupeng */ import Editor from '../../editor/index'; import { DomElement } from '../../utils/dom-core'; import { PanelConf, TabEventConf } from '../menu-constructors/Panel'; export declare type ImgPanelConf = { onlyUploadConf?: { $elem: DomElement; events: TabEventConf[]; }; } & PanelConf; export default function (editor: Editor): ImgPanelConf;