mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
specify any type
This commit is contained in:
@@ -34,6 +34,6 @@ export class AuditService implements AuditServiceAbstraction {
|
|||||||
throw new Error();
|
throw new Error();
|
||||||
}
|
}
|
||||||
const responseJson = await response.json();
|
const responseJson = await response.json();
|
||||||
return responseJson.map((a) => new BreachAccountResponse(a));
|
return responseJson.map((a: any) => new BreachAccountResponse(a));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user