File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ export namespace Ace {
27
27
type DragdropHandler = import ( "./src/mouse/dragdrop_handler" ) . DragdropHandler ;
28
28
type AppConfig = import ( "./src/lib/app_config" ) . AppConfig ;
29
29
type Config = typeof import ( "./src/config" ) ;
30
- type GutterTooltip = typeof import ( "./src/mouse/default_gutter_handler" ) . GutterTooltip ;
31
- type GutterKeyboardEvent = typeof import ( "./src/keyboard/gutter_handler" ) . GutterKeyboardEvent ;
30
+ type GutterTooltip = import ( "./src/mouse/default_gutter_handler" ) . GutterTooltip ;
31
+ type GutterKeyboardEvent = import ( "./src/keyboard/gutter_handler" ) . GutterKeyboardEvent ;
32
32
33
33
type AfterLoadCallback = ( err : Error | null , module : unknown ) => void ;
34
34
type LoaderFunction = ( moduleName : string , afterLoad : AfterLoadCallback ) => void ;
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ declare module "ace-code" {
36
36
type DragdropHandler = import ( "ace-code/src/mouse/dragdrop_handler" ) . DragdropHandler ;
37
37
type AppConfig = import ( "ace-code/src/lib/app_config" ) . AppConfig ;
38
38
type Config = typeof import ( "ace-code/src/config" ) ;
39
- type GutterTooltip = typeof import ( "ace-code/src/mouse/default_gutter_handler" ) . GutterTooltip ;
40
- type GutterKeyboardEvent = typeof import ( "ace-code/src/keyboard/gutter_handler" ) . GutterKeyboardEvent ;
39
+ type GutterTooltip = import ( "ace-code/src/mouse/default_gutter_handler" ) . GutterTooltip ;
40
+ type GutterKeyboardEvent = import ( "ace-code/src/keyboard/gutter_handler" ) . GutterKeyboardEvent ;
41
41
type AfterLoadCallback = ( err : Error | null , module : unknown ) => void ;
42
42
type LoaderFunction = ( moduleName : string , afterLoad : AfterLoadCallback ) => void ;
43
43
export interface ConfigOptions {
You can’t perform that action at this time.
0 commit comments