tiptap/packages/core/src/commands/liftEmptyBlock.ts

16 lines
397 B
TypeScript
Raw Normal View History

2021-01-06 20:02:30 +08:00
import { liftEmptyBlock as originalLiftEmptyBlock } from 'prosemirror-commands'
2021-02-10 16:59:35 +08:00
import { Command, Commands } from '../types'
2021-01-06 20:02:30 +08:00
/**
* Lift block if empty.
*/
2021-02-10 16:59:35 +08:00
export const liftEmptyBlock: Commands['liftEmptyBlock'] = () => ({ state, dispatch }) => {
2021-01-06 20:02:30 +08:00
return originalLiftEmptyBlock(state, dispatch)
}
2021-02-10 16:59:35 +08:00
declare module '@tiptap/core' {
interface Commands {
liftEmptyBlock: () => Command,
}
}