mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
fix implicit any
This commit is contained in:
@@ -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');
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user