Skip to content

Commit

Permalink
chore: add type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
iluxonchik committed Mar 27, 2024
1 parent 66496ee commit 77da2b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe('ZK Locus Oracle Integration Tests For Exact Geolocation', () => {
});

const randomGeoPointData = RandomGeoPointGenerator.generateRandomZKGeoPoint();
const randomGeoPoint = new ZKGeoPoint(randomGeoPointData.latitude, randomGeoPointData.longitude);
const randomGeoPoint: ZKGeoPoint = new ZKGeoPoint(randomGeoPointData.latitude, randomGeoPointData.longitude);



Expand Down

0 comments on commit 77da2b6

Please sign in to comment.