process.d.ts 457 B

123456789
  1. /// <reference types="./types" />
  2. export declare const processHint: (vditor: IVditor) => void;
  3. export declare const processAfterRender: (vditor: IVditor, options?: {
  4. enableAddUndoStack: boolean;
  5. enableHint: boolean;
  6. enableInput: boolean;
  7. }) => void;
  8. export declare const processHeading: (vditor: IVditor, value: string) => void;
  9. export declare const processToolbar: (vditor: IVditor, actionBtn: Element, prefix: string, suffix: string) => void;