Files
tiptap/packages/core/src/commands/insertText.ts
2020-11-18 16:43:27 +01:00

13 lines
238 B
TypeScript

import { Command } from '../types'
/**
* Insert a string of text at the current position.
*/
export const insertText = (value: string): Command => ({ tr, dispatch }) => {
if (dispatch) {
tr.insertText(value)
}
return true
}