2021-12-20 15:47:17 +01:00
|
|
|
import { Component } from "@angular/core";
|
2018-02-16 21:03:29 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
import { ApiService } from "jslib-common/abstractions/api.service";
|
|
|
|
import { I18nService } from "jslib-common/abstractions/i18n.service";
|
|
|
|
import { LogService } from "jslib-common/abstractions/log.service";
|
|
|
|
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
|
|
|
|
import { StateService } from "jslib-common/abstractions/state.service";
|
2018-02-16 21:03:29 +01:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
import { PremiumComponent as BasePremiumComponent } from "jslib-angular/components/premium.component";
|
2018-04-13 19:19:26 +02:00
|
|
|
|
2018-02-16 21:03:29 +01:00
|
|
|
@Component({
|
2021-12-20 15:47:17 +01:00
|
|
|
selector: "app-premium",
|
|
|
|
templateUrl: "premium.component.html",
|
2018-02-16 21:03:29 +01:00
|
|
|
})
|
2018-04-13 19:19:26 +02:00
|
|
|
export class PremiumComponent extends BasePremiumComponent {
|
2021-12-20 15:47:17 +01:00
|
|
|
constructor(
|
|
|
|
i18nService: I18nService,
|
|
|
|
platformUtilsService: PlatformUtilsService,
|
|
|
|
apiService: ApiService,
|
|
|
|
logService: LogService,
|
|
|
|
stateService: StateService
|
|
|
|
) {
|
|
|
|
super(i18nService, platformUtilsService, apiService, logService, stateService);
|
|
|
|
}
|
2018-02-16 21:03:29 +01:00
|
|
|
}
|