@tiptap/core
Version:
headless rich text editor
14 lines • 390 B
TypeScript
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'];
//# sourceMappingURL=blur.d.ts.map