2020-11-18 23:43:27 +08:00
|
|
|
import { selectParentNode as originalSelectParentNode } from 'prosemirror-commands'
|
2021-02-17 01:36:37 +08:00
|
|
|
import { Command, RawCommands } from '../types'
|
2020-11-05 05:38:52 +08:00
|
|
|
|
2021-02-10 16:59:35 +08:00
|
|
|
declare module '@tiptap/core' {
|
2021-02-17 01:39:37 +08:00
|
|
|
interface Commands {
|
2021-02-16 18:27:58 +08:00
|
|
|
selectParentNode: {
|
|
|
|
/**
|
|
|
|
* Select the parent node.
|
|
|
|
*/
|
|
|
|
selectParentNode: () => Command,
|
|
|
|
}
|
2021-02-10 16:59:35 +08:00
|
|
|
}
|
|
|
|
}
|
2021-02-11 01:05:02 +08:00
|
|
|
|
2021-02-17 01:36:37 +08:00
|
|
|
export const selectParentNode: RawCommands['selectParentNode'] = () => ({ state, dispatch }) => {
|
2021-02-11 01:05:02 +08:00
|
|
|
return originalSelectParentNode(state, dispatch)
|
|
|
|
}
|