react native Type annotations can only be used in TypeScript files.ts(8010) code example
Example: type annotations can only be used in typescript files.ts(8010)
// @ts-check
module.exports = {
someMethod: (param: string): string => {
return param;
},
};