UNPKG

2.52 kBJavaScriptView Raw
1var __extends = (this && this.__extends) || (function () {
2 var extendStatics = Object.setPrototypeOf ||
3 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5 return function (d, b) {
6 extendStatics(d, b);
7 function __() { this.constructor = d; }
8 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9 };
10})();
11var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
12 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
13 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
14 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;
15 return c > 3 && r && Object.defineProperty(target, key, r), r;
16};
17import { Component } from "@angular/core";
18import { PathAppComponent } from "../../app/path-framework/path-app.component";
19import { PathService } from "../../app/path-framework/service/path.service";
20import { TranslationService } from "../../app/path-framework/service/translation.service";
21var TestAppComponent = /** @class */ (function (_super) {
22 __extends(TestAppComponent, _super);
23 function TestAppComponent() {
24 return _super !== null && _super.apply(this, arguments) || this;
25 }
26 TestAppComponent.prototype.getBackendUrl = function () {
27 return "";
28 };
29 TestAppComponent.prototype.getBeans = function () {
30 };
31 TestAppComponent.prototype.getFrontendVersion = function () {
32 return "";
33 };
34 TestAppComponent.prototype.getGuiModel = function () {
35 };
36 TestAppComponent.prototype.getHandlers = function () {
37 };
38 TestAppComponent.prototype.getOwnUserForm = function () {
39 return "";
40 };
41 TestAppComponent.prototype.getStartPage = function () {
42 return "";
43 };
44 TestAppComponent = __decorate([
45 Component({
46 selector: "path-application",
47 template: "<span></span>",
48 providers: [PathService, TranslationService]
49 })
50 ], TestAppComponent);
51 return TestAppComponent;
52}(PathAppComponent));
53export { TestAppComponent };
54//# sourceMappingURL=TestAppComponent.js.map
\No newline at end of file