bitwarden-estensione-browser/apps/desktop/src/auth/environment.component.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
797 B
TypeScript
Raw Normal View History

2018-04-04 15:47:49 +02:00
import { Component } from "@angular/core";
2018-02-02 18:31:21 +01:00
2022-06-14 17:10:53 +02:00
import { EnvironmentComponent as BaseEnvironmentComponent } from "@bitwarden/angular/components/environment.component";
import { EnvironmentService } from "@bitwarden/common/abstractions/environment.service";
import { I18nService } from "@bitwarden/common/abstractions/i18n.service";
import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service";
2018-02-02 18:31:21 +01:00
@Component({
selector: "app-environment",
templateUrl: "environment.component.html",
2018-02-02 18:31:21 +01:00
})
2018-04-04 15:47:49 +02:00
export class EnvironmentComponent extends BaseEnvironmentComponent {
constructor(
platformUtilsService: PlatformUtilsService,
environmentService: EnvironmentService,
i18nService: I18nService
) {
super(platformUtilsService, environmentService, i18nService);
2018-02-02 18:31:21 +01:00
}
}