img-click-active.d.ts 380 B

123456789101112
  1. /**
  2. * @description 图片点击后选区更新到img的位置
  3. * @author tonghan
  4. */
  5. import Editor from '../../editor/index';
  6. /**
  7. * 图片点击后选区更新到img的位置
  8. * @param editor 编辑器实例
  9. * @param imgClickEvents delete 键 up 时的 hooks
  10. */
  11. declare function imgClickActive(editor: Editor, imgClickEvents: Function[]): void;
  12. export default imgClickActive;