@tiptap/core
Version:
headless rich text editor
15 lines (14 loc) • 477 B
TypeScript
import { RawCommands } from '../types.js';
declare module '@tiptap/core' {
interface Commands<ReturnType> {
clearContent: {
/**
* Clear the whole document.
* @param emitUpdate Whether to emit an update event.
* @example editor.commands.clearContent()
*/
clearContent: (emitUpdate?: boolean) => ReturnType;
};
}
}
export declare const clearContent: RawCommands['clearContent'];