File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -940,7 +940,8 @@ export namespace Ace {
940
940
callback : CompleterCallback ) : void ;
941
941
942
942
getDocTooltip ?( item : Completion ) : void | string | Completion ;
943
-
943
+ onSeen ?: ( editor : Ace . Editor , completion : Completion ) => void ;
944
+ onInsert ?: ( editor : Ace . Editor , completion : Completion ) => void ;
944
945
cancel ?( ) : void ;
945
946
946
947
id ?: string ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ var event = require("./lib/event");
28
28
* @property {string } [command] - A command to be executed after the completion is inserted (experimental)
29
29
* @property {string } [snippet] - a text snippet that would be inserted when the completion is selected
30
30
* @property {string } [value] - The text that would be inserted when selecting this completion.
31
- * @property {{insertMatch:(editor: Editor, data: Completion) => void} } [completer]
31
+ * @property {import("../ace-internal").Ace.Completer & {insertMatch:(editor: Editor, data: Completion) => void} } [completer]
32
32
* @property {boolean } [hideInlinePreview]
33
33
* @export
34
34
*/
You can’t perform that action at this time.
0 commit comments