react-native-nami-sdk
Version:
React Native SDK for Nami - No-code paywall and onboarding flows with A/B testing.
10 lines (9 loc) • 381 B
TypeScript
import { NativeEventEmitter } from 'react-native';
export declare const NamiOverlayControl: {
emitter: NativeEventEmitter;
presentOverlay(): Promise<void>;
finishOverlay(result?: any): Promise<void>;
onOverlayReady(handler: () => void): () => void;
onOverlayResult(handler: (result: any) => void): () => void;
};
export default function NamiOverlayHost(): any;