You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
380 B
Plaintext
13 lines
380 B
Plaintext
/**
|
|
* @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;
|