UNPKG

@tiptap/starter-kit

Version:

starter kit for tiptap

14 lines (13 loc) 427 B
import { RawCommands } from '../types.js'; declare module '@tiptap/core' { interface Commands<ReturnType> { createParagraphNear: { /** * Create a paragraph nearby. * @example editor.commands.createParagraphNear() */ createParagraphNear: () => ReturnType; }; } } export declare const createParagraphNear: RawCommands['createParagraphNear'];