UNPKG

wangeditor

Version:

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

13 lines (12 loc) 319 B
/** * @description 粘贴 text html * @author wangfupeng */ import Editor from '../../editor/index'; /** * 粘贴文本和 html * @param editor 编辑器对象 * @param pasteEvents 粘贴事件列表 */ declare function pasteTextHtml(editor: Editor, pasteEvents: Function[]): void; export default pasteTextHtml;