tiptap/packages/core/src/commands/deleteSelection.ts
2021-06-04 21:56:29 +02:00

18 lines
482 B
TypeScript

import { deleteSelection as originalDeleteSelection } from 'prosemirror-commands'
import { RawCommands } from '../types'
declare module '@tiptap/core' {
interface Commands<ReturnType> {
deleteSelection: {
/**
* Delete the selection, if there is one.
*/
deleteSelection: () => ReturnType,
}
}
}
export const deleteSelection: RawCommands['deleteSelection'] = () => ({ state, dispatch }) => {
return originalDeleteSelection(state, dispatch)
}