@sqx717/element-tiptap-vue3-fixed
Version:
🌸A modern WYSIWYG rich-text editor using tiptap and Element Plus for Vue3
15 lines (14 loc) • 377 B
TypeScript
import { Extension } from '@tiptap/core';
export declare const DEFAULT_CODEMIRROR_OPTIONS: {
lineNumbers: boolean;
lineWrapping: boolean;
tabSize: number;
tabMode: string;
mode: string;
};
export interface CodeViewOptions {
codemirror: any;
codemirrorOptions: any;
}
declare const CodeView: Extension<CodeViewOptions, any>;
export default CodeView;