paste-img.d.ts 283 B

123456789101112
  1. /**
  2. * @description 粘贴图片
  3. * @author wangfupeng
  4. */
  5. import Editor from '../../../editor/index';
  6. /**
  7. * 粘贴图片
  8. * @param editor 编辑器对象
  9. * @param pasteEvents 粘贴事件列表
  10. */
  11. declare function bindPasteImg(editor: Editor): void;
  12. export default bindPasteImg;