1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-28 10:54:54 +02:00
bitwarden-desktop/src/app/accounts/hint.component.ts

23 lines
780 B
TypeScript
Raw Normal View History

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 { ToasterService } from 'angular2-toaster';
2018-02-08 16:37:54 +01:00
import { Angulartics2 } from 'angulartics2';
2018-01-31 23:06:14 +01:00
import { ApiService } from 'jslib/abstractions/api.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
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',
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 {
constructor(router: Router, analytics: Angulartics2,
toasterService: ToasterService, i18nService: I18nService,
apiService: ApiService) {
super(router, analytics, toasterService, i18nService, apiService);
2018-01-31 23:06:14 +01:00
}
}