bitwarden-estensione-browser/apps/web/src/app/accounts/hint.component.ts

25 lines
866 B
TypeScript
Raw Normal View History

2021-12-17 15:57:11 +01:00
import { Component } from "@angular/core";
import { Router } from "@angular/router";
2018-06-05 21:02:53 +02:00
2022-02-24 12:10:07 +01:00
import { HintComponent as BaseHintComponent } from "jslib-angular/components/hint.component";
2021-12-17 15:57:11 +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";
2018-06-05 21:02:53 +02:00
@Component({
2021-12-17 15:57:11 +01:00
selector: "app-hint",
templateUrl: "hint.component.html",
2018-06-05 21:02:53 +02:00
})
export class HintComponent extends BaseHintComponent {
2021-12-17 15:57:11 +01:00
constructor(
router: Router,
i18nService: I18nService,
apiService: ApiService,
platformUtilsService: PlatformUtilsService,
logService: LogService
) {
super(router, i18nService, apiService, platformUtilsService, logService);
}
2018-06-05 21:02:53 +02:00
}