1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02: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;
}
results.forEach((value) => {
results.forEach((value: any) => {
const cipher = this.initLoginCipher();
cipher.name = this.getValueOrDefault(value.name, '--');
cipher.login.uris = this.makeUriArray(value.login_url);