Fixed #2852 - Editor | selection-change typing error

pull/2862/head
Tuğçe Küçükoğlu 2022-08-16 08:50:50 +03:00
parent f2a554cf3d
commit 5471118064
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ export declare type EditorEmits = {
* Callback to invoke when selection of the text changes.
* @param {EditorSelectionChangeEvent} event - Custom selection change event.
*/
'selection-change': (event: EditorTextChangeEvent) => void;
'selection-change': (event: EditorSelectionChangeEvent) => void;
}
declare class Editor extends ClassComponent<EditorProps, EditorSlots, EditorEmits> { }