UNPKG

@sqx717/element-tiptap-vue3-fixed

Version:

🌸A modern WYSIWYG rich-text editor using tiptap and Element Plus for Vue3

14 lines (13 loc) • 320 B
import { Extension } from '@tiptap/core'; declare module '@tiptap/core' { interface Commands<ReturnType> { print: { /** * print the editor content */ print: () => ReturnType; }; } } declare const Print: Extension<any, any>; export default Print;