create-panel-conf.d.ts 435 B

1234567891011121314
  1. /**
  2. * @description image 菜单 panel tab 配置
  3. * @author wangfupeng
  4. */
  5. import Editor from '../../editor/index';
  6. import { DomElement } from '../../utils/dom-core';
  7. import { PanelConf, TabEventConf } from '../menu-constructors/Panel';
  8. export declare type ImgPanelConf = {
  9. onlyUploadConf?: {
  10. $elem: DomElement;
  11. events: TabEventConf[];
  12. };
  13. } & PanelConf;
  14. export default function (editor: Editor): ImgPanelConf;