UNPKG

964 BPlain TextView Raw
1import {Component} from "@angular/core";
2import {PathAppComponent} from "../../app/path-framework/path-app.component";
3import {PathMockService} from "../../app/path-framework/service/path.mock.service";
4import {PathService} from "../../app/path-framework/service/path.service";
5import {TranslationService} from "../../app/path-framework/service/translation.service";
6
7@Component({
8 selector: "path-application",
9 template: "<span></span>",
10 providers: [PathService, TranslationService]
11})
12export class TestAppComponent extends PathAppComponent {
13
14 getBackendUrl(): string {
15 return "";
16 }
17
18 protected getBeans() {
19 }
20
21 protected getFrontendVersion(): string {
22 return "";
23 }
24
25 protected getGuiModel() {
26 }
27
28 protected getHandlers() {
29 }
30
31 protected getOwnUserForm(): string {
32 return "";
33 }
34
35 protected getStartPage(): string {
36 return "";
37 }
38
39}