mirror of
https://github.com/bitwarden/web
synced 2025-12-12 22:33:23 +00:00
22 lines
871 B
TypeScript
22 lines
871 B
TypeScript
import { Component } from '@angular/core';
|
|
import { Router } from '@angular/router';
|
|
|
|
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 { HintComponent as BaseHintComponent } from 'jslib-angular/components/hint.component';
|
|
|
|
@Component({
|
|
selector: 'app-hint',
|
|
templateUrl: 'hint.component.html',
|
|
})
|
|
export class HintComponent extends BaseHintComponent {
|
|
constructor(router: Router, i18nService: I18nService,
|
|
apiService: ApiService, platformUtilsService: PlatformUtilsService,
|
|
logService: LogService) {
|
|
super(router, i18nService, apiService, platformUtilsService, logService);
|
|
}
|
|
}
|