9 lines
210 B
TypeScript
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)
|
|
}
|