index.d.ts 245 Bytes 编辑Web IDE 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;