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