@tiptap/core
Version:
headless rich text editor
13 lines (12 loc) • 488 B
TypeScript
import { RawCommands } from '../types.js';
declare module '@tiptap/core' {
interface Commands<ReturnType> {
joinTextblockForward: {
/**
* A more limited form of joinForward that only tries to join the current textblock to the one after it, if the cursor is at the end of a textblock.
*/
joinTextblockForward: () => ReturnType;
};
}
}
export declare const joinTextblockForward: RawCommands['joinTextblockForward'];