import { Component, OnInit } from "@angular/core"; import { UntypedFormBuilder } from "@angular/forms"; import { EventCollectionService } from "@bitwarden/common/abstractions/event/event-collection.service"; import { OrganizationService } from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction"; import { PolicyService } from "@bitwarden/common/admin-console/abstractions/policy/policy.service.abstraction"; import { FileDownloadService } from "@bitwarden/common/platform/abstractions/file-download/file-download.service"; import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service"; import { LogService } from "@bitwarden/common/platform/abstractions/log.service"; import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service"; import { DialogService } from "@bitwarden/components"; import { VaultExportServiceAbstraction } from "@bitwarden/vault-export-core"; import { ExportComponent as BaseExportComponent } from "@bitwarden/vault-export-ui"; @Component({ selector: "app-export", templateUrl: "export.component.html", }) export class ExportComponent extends BaseExportComponent implements OnInit { constructor( i18nService: I18nService, platformUtilsService: PlatformUtilsService, exportService: VaultExportServiceAbstraction, eventCollectionService: EventCollectionService, policyService: PolicyService, formBuilder: UntypedFormBuilder, logService: LogService, fileDownloadService: FileDownloadService, dialogService: DialogService, organizationService: OrganizationService, ) { super( i18nService, platformUtilsService, exportService, eventCollectionService, policyService, logService, formBuilder, fileDownloadService, dialogService, organizationService, ); } }