2021-10-21 11:10:36 +02:00
|
|
|
import { Component } from '@angular/core';
|
2018-02-16 21:03:29 +01:00
|
|
|
|
2021-06-07 19:26:36 +02:00
|
|
|
import { ApiService } from 'jslib-common/abstractions/api.service';
|
|
|
|
import { I18nService } from 'jslib-common/abstractions/i18n.service';
|
2021-10-21 11:10:36 +02:00
|
|
|
import { LogService } from 'jslib-common/abstractions/log.service';
|
2021-06-07 19:26:36 +02:00
|
|
|
import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service';
|
2021-12-15 23:32:00 +01:00
|
|
|
import { StateService } from 'jslib-common/abstractions/state.service';
|
2018-02-16 21:03:29 +01:00
|
|
|
|
2021-06-07 19:26:36 +02: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({
|
|
|
|
selector: 'app-premium',
|
2018-04-06 18:25:22 +02:00
|
|
|
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 {
|
2018-10-03 15:42:11 +02:00
|
|
|
constructor(i18nService: I18nService, platformUtilsService: PlatformUtilsService,
|
2021-12-15 23:32:00 +01:00
|
|
|
apiService: ApiService, logService: LogService,
|
|
|
|
stateService: StateService) {
|
|
|
|
super(i18nService, platformUtilsService, apiService, logService, stateService);
|
2018-02-16 21:03:29 +01:00
|
|
|
}
|
|
|
|
}
|