mirror of
https://github.com/bitwarden/desktop
synced 2026-01-04 01:23:37 +00:00
19 lines
761 B
TypeScript
19 lines
761 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { EnvironmentService } from 'jslib/abstractions/environment.service';
|
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
|
|
|
import { EnvironmentComponent as BaseEnvironmentComponent } from 'jslib/angular/components/environment.component';
|
|
|
|
@Component({
|
|
selector: 'app-environment',
|
|
templateUrl: 'environment.component.html',
|
|
})
|
|
export class EnvironmentComponent extends BaseEnvironmentComponent {
|
|
constructor(platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService,
|
|
i18nService: I18nService) {
|
|
super(platformUtilsService, environmentService, i18nService);
|
|
}
|
|
}
|