tiptap/packages/core/src/commands/insertText.ts
Philipp Kühn 13a314e123 refactoring
2020-11-16 21:42:35 +01:00

10 lines
167 B
TypeScript

import { Command } from '../types'
export default (value: string): Command => ({ tr, dispatch }) => {
if (dispatch) {
tr.insertText(value)
}
return true
}