paste-text-html.d.ts 319 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/**
 * @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;