index.d.ts 260 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/**
 * @description 绑定链接元素的事件,入口
 * @author wangfupeng
 */
import Editor from '../../../editor/index';
/**
 * 绑定事件
 * @param editor 编辑器实例
 */
declare function bindEvent(editor: Editor): void;
export default bindEvent;