Skip to content

Commit

Permalink
Fix typescript input type
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Aug 4, 2022
1 parent d79c36c commit 0afd352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rn-tester/js/components/ListExampleShared.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export type Item = {
...
};

function genItemData(i): Item {
function genItemData(i: number): Item {
const itemHash = Math.abs(hashCode('Item ' + i));
return {
title: 'Item ' + i,
Expand Down

0 comments on commit 0afd352

Please sign in to comment.