Skip to content

Commit

Permalink
add events
Browse files Browse the repository at this point in the history
  • Loading branch information
Alice Koreman committed Jan 7, 2025
1 parent 6916457 commit 00a7b5d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions ace-internal.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -524,10 +524,10 @@ export namespace Ace {
"codeLensClick": (e: any) => void;

"select": () => void;
"gutterkeydown": () => void;
"gutterclick": () => void;
"showGutterTooltip": () => void;
"hideGutterTooltip": () => void;
"gutterkeydown": (e: any) => void;
"gutterclick": (e: any) => void;
"showGutterTooltip": (e: any) => void;
"hideGutterTooltip": (e: any) => void;
}

interface AcePopupEvents {
Expand Down
8 changes: 4 additions & 4 deletions ace.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,10 +437,10 @@ declare module "ace-code" {
//from code_lens extension
"codeLensClick": (e: any) => void;
"select": () => void;
"gutterkeydown": () => void;
"gutterclick": () => void;
"showGutterTooltip": () => void;
"hideGutterTooltip": () => void;
"gutterkeydown": (e: any) => void;
"gutterclick": (e: any) => void;
"showGutterTooltip": (e: any) => void;
"hideGutterTooltip": (e: any) => void;
}
interface AcePopupEvents {
"click": (e: MouseEvent) => void;
Expand Down

0 comments on commit 00a7b5d

Please sign in to comment.