2018-02-08 16:37:54 +01:00
|
|
|
import { Component } from '@angular/core';
|
2018-01-31 23:06:14 +01:00
|
|
|
import { Router } from '@angular/router';
|
|
|
|
|
|
|
|
import { ApiService } from 'jslib/abstractions/api.service';
|
|
|
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
2018-10-03 15:42:11 +02:00
|
|
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
2018-01-31 23:06:14 +01:00
|
|
|
|
2018-04-04 15:47:49 +02:00
|
|
|
import { HintComponent as BaseHintComponent } from 'jslib/angular/components/hint.component';
|
|
|
|
|
2018-01-31 23:06:14 +01:00
|
|
|
@Component({
|
|
|
|
selector: 'app-hint',
|
2018-04-06 18:25:22 +02:00
|
|
|
templateUrl: 'hint.component.html',
|
2018-01-31 23:06:14 +01:00
|
|
|
})
|
2018-04-04 15:47:49 +02:00
|
|
|
export class HintComponent extends BaseHintComponent {
|
2018-10-03 15:42:11 +02:00
|
|
|
constructor(router: Router, platformUtilsService: PlatformUtilsService,
|
|
|
|
i18nService: I18nService, apiService: ApiService) {
|
|
|
|
super(router, i18nService, apiService, platformUtilsService);
|
2018-01-31 23:06:14 +01:00
|
|
|
}
|
|
|
|
}
|