1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/apps/web/src/app/accounts/hint.component.ts

25 lines
891 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-06-14 17:10:53 +02:00
import { HintComponent as BaseHintComponent } from "@bitwarden/angular/components/hint.component";
import { ApiService } from "@bitwarden/common/abstractions/api.service";
import { I18nService } from "@bitwarden/common/abstractions/i18n.service";
import { LogService } from "@bitwarden/common/abstractions/log.service";
import { PlatformUtilsService } from "@bitwarden/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
}