Files
tiptap/packages/core/src/commands/selectAll.ts
2020-11-04 22:38:52 +01:00

7 lines
181 B
TypeScript

import { selectAll } from 'prosemirror-commands'
import { Command } from '../Editor'
export default (): Command => ({ state, dispatch }) => {
return selectAll(state, dispatch)
}