mirror of
https://github.com/bitwarden/directory-connector
synced 2026-01-05 01:53:48 +00:00
* angular 18 upgrade * wip * wip * remove @types/glob, fix jest version, use standalone: false * clean up * npm ci
22 lines
823 B
TypeScript
22 lines
823 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { EnvironmentComponent as BaseEnvironmentComponent } from "@/jslib/angular/src/components/environment.component";
|
|
import { EnvironmentService } from "@/jslib/common/src/abstractions/environment.service";
|
|
import { I18nService } from "@/jslib/common/src/abstractions/i18n.service";
|
|
import { PlatformUtilsService } from "@/jslib/common/src/abstractions/platformUtils.service";
|
|
|
|
@Component({
|
|
selector: "app-environment",
|
|
templateUrl: "environment.component.html",
|
|
standalone: false,
|
|
})
|
|
export class EnvironmentComponent extends BaseEnvironmentComponent {
|
|
constructor(
|
|
environmentService: EnvironmentService,
|
|
i18nService: I18nService,
|
|
platformUtilsService: PlatformUtilsService,
|
|
) {
|
|
super(platformUtilsService, environmentService, i18nService);
|
|
}
|
|
}
|