vuetify-pro-tiptap
Version:
tiptap text editor on vuejs and vuetify
11 lines (10 loc) • 338 B
TypeScript
import { Extensions } from '@tiptap/core';
import { Plugin } from 'vue';
export interface InstallationOptions {
lang?: string;
fallbackLang?: string;
markdownTheme?: string;
components?: Record<string, any>;
extensions?: Extensions;
}
export declare function createVuetifyProTipTap(opts: InstallationOptions): Plugin;