UNPKG

@tiptap/starter-kit

Version:

starter kit for tiptap

14 lines (13 loc) 356 B
import { RawCommands } from '../types.js'; declare module '@tiptap/core' { interface Commands<ReturnType> { blur: { /** * Removes focus from the editor. * @example editor.commands.blur() */ blur: () => ReturnType; }; } } export declare const blur: RawCommands['blur'];