@tiptap/core
Version:
headless rich text editor
20 lines (16 loc) • 565 B
text/typescript
import { liftEmptyBlock as originalLiftEmptyBlock } from '@tiptap/pm/commands'
import { RawCommands } from '../types.js'
declare module '@tiptap/core' {
interface Commands<ReturnType> {
liftEmptyBlock: {
/**
* If the cursor is in an empty textblock that can be lifted, lift the block.
* @example editor.commands.liftEmptyBlock()
*/
liftEmptyBlock: () => ReturnType,
}
}
}
export const liftEmptyBlock: RawCommands['liftEmptyBlock'] = () => ({ state, dispatch }) => {
return originalLiftEmptyBlock(state, dispatch)
}