wangeditor
Version:
wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费
22 lines (21 loc) • 588 B
TypeScript
/**
* @description 处理粘贴逻辑
* @author wangfupeng
*/
/**
* 获取粘贴的纯文本
* @param e Event 参数
*/
export declare function getPasteText(e: ClipboardEvent): string;
/**
* 获取粘贴的 html 字符串
* @param e Event 参数
* @param filterStyle 是否过滤 style 样式
* @param ignoreImg 是否忽略 img 标签
*/
export declare function getPasteHtml(e: ClipboardEvent, filterStyle?: boolean, ignoreImg?: boolean): string;
/**
* 获取粘贴的图片文件
* @param e Event 参数
*/
export declare function getPasteImgs(e: ClipboardEvent): File[];