mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-09 09:51:02 +01:00
28de9439be
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
23 lines
937 B
TypeScript
23 lines
937 B
TypeScript
import { Component } from "@angular/core";
|
|
import { Router } from "@angular/router";
|
|
|
|
import { TwoFactorOptionsComponent as BaseTwoFactorOptionsComponent } from "@bitwarden/angular/auth/components/two-factor-options.component";
|
|
import { TwoFactorService } from "@bitwarden/common/auth/abstractions/two-factor.service";
|
|
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
|
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
|
|
|
|
@Component({
|
|
selector: "app-two-factor-options",
|
|
templateUrl: "two-factor-options.component.html",
|
|
})
|
|
export class TwoFactorOptionsComponent extends BaseTwoFactorOptionsComponent {
|
|
constructor(
|
|
twoFactorService: TwoFactorService,
|
|
router: Router,
|
|
i18nService: I18nService,
|
|
platformUtilsService: PlatformUtilsService,
|
|
) {
|
|
super(twoFactorService, router, i18nService, platformUtilsService, window);
|
|
}
|
|
}
|