I don't really understand how i should use this with typescript?
import { NativeModules, Platform } from 'react-native'var Aes = NativeModules.Aes
Type of Aes, is any which makes it unusable in typescript. Npmjs shows this package has typescript declarations and theres at least one .d.ts file in the repo, should i be doing something differently?
I don't really understand how i should use this with typescript?
import { NativeModules, Platform } from 'react-native'
var Aes = NativeModules.Aes
Type of
Aes
, is any which makes it unusable in typescript. Npmjs shows this package has typescript declarations and theres at least one .d.ts file in the repo, should i be doing something differently?