11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
|
import { Component } from "vue";
|
||
|
interface VueMavonEditor {
|
||
|
markdownIt: any;
|
||
|
mavonEditor: Component;
|
||
|
LeftToolbar: Component;
|
||
|
RightToolbar: Component;
|
||
|
install: (Vue: any) => any;
|
||
|
}
|
||
|
declare let editor: VueMavonEditor;
|
||
|
export default editor;
|