index.ts 182 B

123456789
  1. import Editor from './src/Editor.vue'
  2. import { IDomEditor } from '@wangeditor/editor'
  3. export interface EditorExpose {
  4. getEditorRef: () => Promise<IDomEditor>
  5. }
  6. export { Editor }