File tree 5 files changed +9
-0
lines changed
5 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ export * from './settings';
5
5
export * from './notification' ;
6
6
export * from './problems' ;
7
7
export * from './colorTheme' ;
8
+ export * from './keybinding' ;
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ import { container } from 'tsyringe';
4
4
export * as event from 'mo/common/event' ;
5
5
export * as react from 'mo/react' ;
6
6
export * as component from 'mo/components' ;
7
+ export * as monaco from 'mo/monaco/api' ;
8
+
7
9
export * from 'mo/i18n' ;
8
10
export * from 'mo/workbench' ;
9
11
export * from 'mo/services' ;
Original file line number Diff line number Diff line change
1
+ export { KeyChord } from 'monaco-editor/esm/vs/base/common/keyCodes' ;
2
+ export type { IQuickInputService } from 'monaco-editor/esm/vs/platform/quickinput/common/quickInput' ;
3
+ export { KeybindingWeight , Action2 } from './common' ;
Original file line number Diff line number Diff line change @@ -22,3 +22,5 @@ import 'monaco-editor/esm/vs/editor/standalone/browser/referenceSearch/standalon
22
22
import 'monaco-editor/esm/vs/editor/standalone/browser/toggleHighContrast/toggleHighContrast' ;
23
23
24
24
export * from 'monaco-editor/esm/vs/editor/editor.api.js' ;
25
+
26
+ export { KeybindingWeight , Action2 } from './common' ;
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ module.exports = {
60
60
'api/namespaces/molecule.model' ,
61
61
'api/namespaces/molecule.react' ,
62
62
'api/namespaces/molecule.event' ,
63
+ 'api/namespaces/molecule.monaco' ,
63
64
] ,
64
65
} ,
65
66
{
You can’t perform that action at this time.
0 commit comments