mirror of
https://github.com/bitwarden/web
synced 2025-12-12 22:33:23 +00:00
* Add jslib as a dependency * Cleanup tsconfig, webpack, add jslib-angular to package.json * Update all import paths * Add back @types/node. * Lint * Remove dummy module * Remove merge conflict * Group imports * Bump jslib
20 lines
759 B
TypeScript
20 lines
759 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 { 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) {
|
|
super(router, i18nService, apiService, platformUtilsService);
|
|
}
|
|
}
|