mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-09 13:28:04 +08:00
10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
import { Command } from '../types'
|
|
|
|
export default (value: string): Command => ({ tr, dispatch }) => {
|
|
if (dispatch) {
|
|
tr.insertText(value)
|
|
}
|
|
|
|
return true
|
|
}
|