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

9 lines
210 B
TypeScript

import { Command } from '../types'
/**
* Clear the whole document.
*/
export const clearContent = (emitUpdate: Boolean = false): Command => ({ commands }) => {
return commands.setContent('', emitUpdate)
}