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

21 lines
875 B
TypeScript
Raw Normal View History

import { Component } from '@angular/core';
2018-01-29 15:33:43 +01:00
import { I18nService } from 'jslib-common/abstractions/i18n.service';
import { PasswordGenerationService } from 'jslib-common/abstractions/passwordGeneration.service';
import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service';
2018-01-29 15:33:43 +01:00
2018-04-06 05:50:06 +02:00
import {
2018-04-11 05:49:41 +02:00
PasswordGeneratorComponent as BasePasswordGeneratorComponent,
} from 'jslib-angular/components/password-generator.component';
2018-04-06 05:50:06 +02:00
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, platformUtilsService: PlatformUtilsService,
i18nService: I18nService) {
super(passwordGenerationService, platformUtilsService, i18nService, window);
2018-02-24 21:19:16 +01:00
}
2018-01-29 15:33:43 +01:00
}