index.d.ts 197 B

12345678910
  1. /**
  2. * @description range变化
  3. * @author liuwei
  4. */
  5. import Editor from '../index';
  6. export default class SelectionChange {
  7. editor: Editor;
  8. constructor(editor: Editor);
  9. emit(): void;
  10. }