UNPKG

537 BTypeScriptView Raw
1/**
2 * @description 图片拖拽事件绑定
3 * @author xiaokyo
4 */
5import Editor from '../../../editor';
6import { DomElement } from '../../../utils/dom-core';
7import '../../../assets/style/drag-size.less';
8/**
9 * 生成图片拖拽框的 显示/隐藏 函数
10 */
11export declare function createShowHideFn(editor: Editor): {
12 showDrag: ($target: DomElement) => false | undefined;
13 hideDrag: () => void;
14};
15/**
16 * 点击事件委托
17 * @param editor 编辑器实例
18 */
19export default function bindDragImgSize(editor: Editor): void;