UNPKG

airbridge-react-native-sdk

Version:

Airbridge SDK for React Native

11 lines (9 loc) 257 B
export type Interactor = {} export const createInteractor = <ActualInteractor extends Interactor> ( nativeModule: any, ): ActualInteractor => { return Object.assign(nativeModule, { ios: nativeModule, android: nativeModule, }) }