Hey, I just update ‘react-native-qualtrics’ from 2.5.0 to 2.8.0 and starting to get the error:
Could not find a declaration file for module 'react-native-qualtrics'. 'PATH_MASKED/node_modules/react-native-qualtrics/lib/commonjs/index.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/react-native-qualtrics` if it exists or add a new declaration (.d.ts) file containing `declare module 'react-native-qualtrics';`
After some digging, it started in 2.6.0 since the folder structure under typescript has changed.
With 2.5.0 in our node_module, react-native-qualtrics was having:
typescript/
index.d.ts
index.d.ts.map
NativeRNQ...csDigital.d.ts
NativeRNQ...ital.d.ts.map
But starting from 2.6.0 , I see
typescript/
lib/
scripts/
src/
index.d.ts
index.d.ts.map
NativeRNQ...csDigital.d.ts
NativeRNQ...ital.d.ts.map
Can this be fixed please?