specify any type

This commit is contained in:
Kyle Spearrin 2018-06-28 13:48:50 -04:00
parent a097ef9bea
commit 3aebe1a09a
1 changed files with 1 additions and 1 deletions

View File

@ -34,6 +34,6 @@ export class AuditService implements AuditServiceAbstraction {
throw new Error();
}
const responseJson = await response.json();
return responseJson.map((a) => new BreachAccountResponse(a));
return responseJson.map((a: any) => new BreachAccountResponse(a));
}
}