1 | "use strict";
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 | var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
18 | if (k2 === undefined) k2 = k;
|
19 | Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
20 | }) : (function(o, m, k, k2) {
|
21 | if (k2 === undefined) k2 = k;
|
22 | o[k2] = m[k];
|
23 | }));
|
24 | var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
25 | for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
26 | };
|
27 | Object.defineProperty(exports, "__esModule", { value: true });
|
28 | exports.bindStatusBar = void 0;
|
29 | const status_bar_1 = require("./status-bar");
|
30 | const status_bar_types_1 = require("./status-bar-types");
|
31 | const status_bar_view_model_1 = require("./status-bar-view-model");
|
32 | __exportStar(require("./status-bar"), exports);
|
33 | __exportStar(require("./status-bar-types"), exports);
|
34 | __exportStar(require("./status-bar-view-model"), exports);
|
35 | function bindStatusBar(bind) {
|
36 | bind(status_bar_1.StatusBarImpl).toSelf().inSingletonScope();
|
37 | bind(status_bar_types_1.StatusBar).to(status_bar_1.StatusBarImpl).inSingletonScope();
|
38 | bind(status_bar_view_model_1.StatusBarViewModel).toSelf().inSingletonScope();
|
39 | }
|
40 | exports.bindStatusBar = bindStatusBar;
|
41 |
|
\ | No newline at end of file |