1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

fix implicit any

This commit is contained in:
Kyle Spearrin
2018-07-11 10:26:32 -04:00
parent 06e412a095
commit e9518e104e

View File

@@ -42,7 +42,7 @@ export class OnePassword1PifImporter extends BaseImporter implements Importer {
this.parseFields(item.secureContents.fields, cipher, 'designation', 'value', 'name'); this.parseFields(item.secureContents.fields, cipher, 'designation', 'value', 'name');
} }
if (item.secureContents.sections != null) { if (item.secureContents.sections != null) {
item.secureContents.sections.forEach((section) => { item.secureContents.sections.forEach((section: any) => {
if (section.fields != null) { if (section.fields != null) {
this.parseFields(section.fields, cipher, 'n', 'v', 't'); this.parseFields(section.fields, cipher, 'n', 'v', 't');
} }