1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 17:53:39 +00:00

fix implicit any

This commit is contained in:
Kyle Spearrin
2018-07-19 08:30:07 -04:00
parent 4750a64ece
commit 3f329ca613

View File

@@ -16,7 +16,7 @@ export class PasswordBossJsonImporter extends BaseImporter implements Importer {
return result; return result;
} }
results.forEach((value) => { results.forEach((value: any) => {
const cipher = this.initLoginCipher(); const cipher = this.initLoginCipher();
cipher.name = this.getValueOrDefault(value.name, '--'); cipher.name = this.getValueOrDefault(value.name, '--');
cipher.login.uris = this.makeUriArray(value.login_url); cipher.login.uris = this.makeUriArray(value.login_url);