tiptap/packages/core/src/commands/insertText.ts

10 lines
168 B
TypeScript
Raw Normal View History

2020-11-05 05:38:52 +08:00
import { Command } from '../Editor'
export default (value: string): Command => ({ tr, dispatch }) => {
if (dispatch) {
tr.insertText(value)
}
return true
}