wangeditor
Version:
wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费
24 lines (23 loc) • 543 B
TypeScript
/**
* @description 创建table
* @author lichunlin
*/
import PanelMenu from '../menu-constructors/PanelMenu';
import Editor from '../../editor/index';
import { MenuActive } from '../menu-constructors/Menu';
declare class Table extends PanelMenu implements MenuActive {
constructor(editor: Editor);
/**
* 菜单点击事件
*/
clickHandler(): void;
/**
* 创建 panel
*/
private createPanel;
/**
* 尝试修改菜单 active 状态
*/
tryChangeActive(): void;
}
export default Table;