react-native-nami-sdk
Version:
React Native Module for Nami - Easy subscriptions & in-app purchases, with powerful built-in paywalls and A/B testing.
14 lines (10 loc) • 365 B
text/typescript
import { NativeModules } from 'react-native';
export const { NamiMLManagerBridge } = NativeModules;
export interface INamiMLManager {
coreAction: (label: string) => void;
enterCoreContent: (label: string | string[]) => void;
exitCoreContent: (label: string | string[]) => void;
}
export const NamiMLManager: INamiMLManager = {
...NamiMLManagerBridge,
};