editorCommonEvent.d.ts 912 B

12345678910
  1. /// <reference types="./types" />
  2. export declare const focusEvent: (vditor: IVditor, editorElement: HTMLElement) => void;
  3. export declare const dblclickEvent: (vditor: IVditor, editorElement: HTMLElement) => void;
  4. export declare const blurEvent: (vditor: IVditor, editorElement: HTMLElement) => void;
  5. export declare const dropEvent: (vditor: IVditor, editorElement: HTMLElement) => void;
  6. export declare const copyEvent: (vditor: IVditor, editorElement: HTMLElement, copy: (event: ClipboardEvent, vditor: IVditor) => void) => void;
  7. export declare const cutEvent: (vditor: IVditor, editorElement: HTMLElement, copy: (event: ClipboardEvent, vditor: IVditor) => void) => void;
  8. export declare const scrollCenter: (vditor: IVditor) => void;
  9. export declare const hotkeyEvent: (vditor: IVditor, editorElement: HTMLElement) => void;
  10. export declare const selectEvent: (vditor: IVditor, editorElement: HTMLElement) => void;