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

27 lines
1.0 KiB
TypeScript
Raw Normal View History

2018-01-29 22:13:37 +01:00
import { ToasterService } from 'angular2-toaster';
2018-02-08 16:37:54 +01:00
import { Angulartics2 } from 'angulartics2';
2018-01-29 22:13:37 +01:00
2018-01-29 15:33:43 +01:00
import {
Component,
} from '@angular/core';
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';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
2018-01-29 15:33:43 +01:00
2018-04-06 05:50:06 +02:00
import {
PasswordGeneratorComponent as BasePasswordGeneratorComponent
} from 'jslib/angular/components/password-generator.component';
2018-01-29 15:33:43 +01:00
@Component({
2018-02-18 04:37:43 +01:00
selector: 'app-password-generator',
templateUrl: 'password-generator.component.html',
2018-01-29 15:33:43 +01:00
})
2018-04-06 05:50:06 +02:00
export class PasswordGeneratorComponent extends BasePasswordGeneratorComponent {
constructor(passwordGenerationService: PasswordGenerationService, analytics: Angulartics2,
platformUtilsService: PlatformUtilsService, i18nService: I18nService,
2018-04-09 23:36:20 +02:00
toasterService: ToasterService) {
super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService);
2018-02-24 21:19:16 +01:00
}
2018-01-29 15:33:43 +01:00
}