1 | "use strict";
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 | var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
18 | var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
19 | if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
20 | else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
21 | return c > 3 && r && Object.defineProperty(target, key, r), r;
|
22 | };
|
23 | Object.defineProperty(exports, "__esModule", { value: true });
|
24 | exports.DefaultFrontendApplicationContribution = exports.OnWillStopAction = exports.FrontendApplicationContribution = void 0;
|
25 | const types_1 = require("../common/types");
|
26 | const inversify_1 = require("inversify");
|
27 |
|
28 |
|
29 |
|
30 | exports.FrontendApplicationContribution = Symbol('FrontendApplicationContribution');
|
31 | var OnWillStopAction;
|
32 | (function (OnWillStopAction) {
|
33 | function is(candidate) {
|
34 | return (0, types_1.isObject)(candidate) && 'action' in candidate && 'reason' in candidate;
|
35 | }
|
36 | OnWillStopAction.is = is;
|
37 | })(OnWillStopAction = exports.OnWillStopAction || (exports.OnWillStopAction = {}));
|
38 |
|
39 |
|
40 |
|
41 |
|
42 | let DefaultFrontendApplicationContribution = class DefaultFrontendApplicationContribution {
|
43 | initialize() {
|
44 |
|
45 | }
|
46 | };
|
47 | DefaultFrontendApplicationContribution = __decorate([
|
48 | (0, inversify_1.injectable)()
|
49 | ], DefaultFrontendApplicationContribution);
|
50 | exports.DefaultFrontendApplicationContribution = DefaultFrontendApplicationContribution;
|
51 |
|
\ | No newline at end of file |