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

18 lines
473 B
TypeScript
Raw Normal View History

2020-11-18 23:43:27 +08:00
import { deleteSelection as originalDeleteSelection } from 'prosemirror-commands'
2021-02-10 16:59:35 +08:00
import { Command, Commands } from '../types'
2020-11-05 05:38:52 +08:00
2021-02-10 16:59:35 +08:00
declare module '@tiptap/core' {
2021-02-16 18:27:58 +08:00
interface AllCommands {
deleteSelection: {
/**
* Delete the selection, if there is one.
*/
deleteSelection: () => Command,
}
2021-02-10 16:59:35 +08:00
}
}
2021-02-11 01:05:02 +08:00
export const deleteSelection: Commands['deleteSelection'] = () => ({ state, dispatch }) => {
return originalDeleteSelection(state, dispatch)
}