bitwarden-estensione-browser/src/app/vault/password-generator-history....

25 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-02-23 22:31:52 +01:00
import { ToasterService } from 'angular2-toaster';
2018-02-18 04:37:43 +01:00
import { Angulartics2 } from 'angulartics2';
2018-04-06 05:50:06 +02:00
import { Component } from '@angular/core';
2018-02-18 04:37:43 +01:00
2018-02-23 22:31:52 +01:00
import { I18nService } from 'jslib/abstractions/i18n.service';
2018-02-23 22:32:32 +01:00
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
2018-02-18 04:37:43 +01:00
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
2018-04-06 05:50:06 +02:00
import {
2018-04-11 05:49:41 +02:00
PasswordGeneratorHistoryComponent as BasePasswordGeneratorHistoryComponent,
2018-04-06 05:50:06 +02:00
} from 'jslib/angular/components/password-generator-history.component';
2018-02-18 04:37:43 +01:00
@Component({
selector: 'app-password-generator-history',
templateUrl: 'password-generator-history.component.html',
2018-02-18 04:37:43 +01:00
})
2018-04-06 05:50:06 +02:00
export class PasswordGeneratorHistoryComponent extends BasePasswordGeneratorHistoryComponent {
constructor(passwordGenerationService: PasswordGenerationService, analytics: Angulartics2,
platformUtilsService: PlatformUtilsService, i18nService: I18nService,
toasterService: ToasterService) {
2018-04-19 14:09:04 +02:00
super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService, window);
2018-02-18 04:37:43 +01:00
}
}