bind-event.d.ts 193 B

1234567
  1. /**
  2. * @description 绑定编辑器事件 change blur focus
  3. * @author wangfupeng
  4. */
  5. import Editor from '../index';
  6. declare function bindEvent(editor: Editor): void;
  7. export default bindEvent;