Add missing param to cut handler

This commit is contained in:
Belén Albeza 2025-11-21 10:28:48 +01:00
parent fde73f30b9
commit c6dd3e0eeb
1 changed files with 2 additions and 1 deletions

View File

@ -15,5 +15,6 @@
*
* @param {ClipboardEvent} event
* @param {TextEditor} editor
* @param {SelectionController} selectionController
*/
export function cut(event, editor) {}
export function cut(event, editor, selectionController) {}