wangeditor
Version:
wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费
13 lines (12 loc) • 380 B
TypeScript
/**
* @description 图片点击后选区更新到img的位置
* @author tonghan
*/
import Editor from '../../editor/index';
/**
* 图片点击后选区更新到img的位置
* @param editor 编辑器实例
* @param imgClickEvents delete 键 up 时的 hooks
*/
declare function imgClickActive(editor: Editor, imgClickEvents: Function[]): void;
export default imgClickActive;