mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-04 00:37:57 +08:00
7 lines
195 B
TypeScript
7 lines
195 B
TypeScript
|
import { selectParentNode } from 'prosemirror-commands'
|
||
|
import { Command } from '../Editor'
|
||
|
|
||
|
export default (): Command => ({ state, dispatch }) => {
|
||
|
return selectParentNode(state, dispatch)
|
||
|
}
|