1 | "use strict";
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 | Object.defineProperty(exports, "__esModule", { value: true });
|
18 | const inversify_1 = require("inversify");
|
19 | const frontend_application_1 = require("../frontend-application");
|
20 | const context_menu_renderer_1 = require("../context-menu-renderer");
|
21 | const browser_menu_plugin_1 = require("./browser-menu-plugin");
|
22 | const browser_context_menu_renderer_1 = require("./browser-context-menu-renderer");
|
23 | exports.default = new inversify_1.ContainerModule(bind => {
|
24 | bind(browser_menu_plugin_1.BrowserMainMenuFactory).toSelf().inSingletonScope();
|
25 | bind(context_menu_renderer_1.ContextMenuRenderer).to(browser_context_menu_renderer_1.BrowserContextMenuRenderer).inSingletonScope();
|
26 | bind(browser_menu_plugin_1.BrowserMenuBarContribution).toSelf().inSingletonScope();
|
27 | bind(frontend_application_1.FrontendApplicationContribution).toService(browser_menu_plugin_1.BrowserMenuBarContribution);
|
28 | });
|
29 |
|
\ | No newline at end of file |