// This file just describes the shape of the react-native-events module // as it doesn't have any types declare module 'react-native-events'{ interface RNEventsStatic{ register(module:any):void; conform(module:any):void; emitNativeEvent(nativeModule:any,eventName:string,...args:any[]):void; } const static :RNEventsStatic; export default static; }