tiptap/packages/core/src/commands/liftEmptyBlock.ts
2021-02-16 18:39:37 +01:00

18 lines
451 B
TypeScript

import { liftEmptyBlock as originalLiftEmptyBlock } from 'prosemirror-commands'
import { Command, RawCommands } from '../types'
declare module '@tiptap/core' {
interface Commands {
liftEmptyBlock: {
/**
* Lift block if empty.
*/
liftEmptyBlock: () => Command,
}
}
}
export const liftEmptyBlock: RawCommands['liftEmptyBlock'] = () => ({ state, dispatch }) => {
return originalLiftEmptyBlock(state, dispatch)
}