UNPKG

wangeditor

Version:

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

23 lines (22 loc) 537 B
/** * @description 创建tabel * @author lichunlin */ import Editor from '../../editor/index'; declare class CreateTable { private editor; constructor(editor: Editor); /** * 执行创建 * @param rowValue 行数 * @param colValue 列数 */ createAction(rowValue: number, colValue: number): void; /** * 创建table、行、列 * @param rowValue 行数 * @param colValue 列数 */ createTableHtml(rowValue: number, colValue: number): string; } export default CreateTable;