index.d.ts 260 B

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