index.d.ts 262 B

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