mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-23 00:27:49 +08:00
20 lines
464 B
TypeScript
20 lines
464 B
TypeScript
import { deleteSelection } from 'prosemirror-commands'
|
|
import { Command } from '../Editor'
|
|
import { createExtension } from '../Extension'
|
|
|
|
export const DeleteSelection = createExtension({
|
|
addCommands() {
|
|
return {
|
|
deleteSelection: (): Command => ({ state, dispatch }) => {
|
|
return deleteSelection(state, dispatch)
|
|
},
|
|
}
|
|
},
|
|
})
|
|
|
|
declare module '../Editor' {
|
|
interface AllExtensions {
|
|
DeleteSelection: typeof DeleteSelection,
|
|
}
|
|
}
|