import { NativeModules } from 'react-native'; type FanType = { isLoad() : Promise; loadAd(placementId : String) : Promise; showAd() : Promise; }; const Fan = NativeModules.Fan as FanType; export { Fan };