From 91081d92327da22ab3be88a60f8b71be26933370 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 5 Jul 2018 14:49:48 -0400 Subject: [PATCH] fix implicit any --- src/services/export.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/export.service.ts b/src/services/export.service.ts index add422a052a..6a49d729f74 100644 --- a/src/services/export.service.ts +++ b/src/services/export.service.ts @@ -72,7 +72,7 @@ export class ExportService implements ExportServiceAbstraction { const promises = []; promises.push(this.apiService.getCollections(organizationId).then((collections) => { - const collectionPromises = []; + const collectionPromises: any = []; if (collections != null && collections.data != null && collections.data.length > 0) { collections.data.forEach((c) => { const collection = new Collection(new CollectionData(c)); @@ -85,7 +85,7 @@ export class ExportService implements ExportServiceAbstraction { })); promises.push(this.apiService.getCiphersOrganization(organizationId).then((ciphers) => { - const cipherPromises = []; + const cipherPromises: any = []; if (ciphers != null && ciphers.data != null && ciphers.data.length > 0) { ciphers.data.forEach((c) => { const cipher = new Cipher(new CipherData(c));