react-native-qonversion
Version:
Qonversion provides full in-app purchases infrastructure, so you do not need to build your own server for receipt validation. Implement in-app subscriptions, validate user receipts, check subscription status, and provide access to your app features and co
13 lines (12 loc) • 725 B
TypeScript
import { AutomationsDelegate } from "../dto/AutomationsDelegate";
import AutomationsApi from '../AutomationsApi';
import { ScreenPresentationConfig } from '../dto/ScreenPresentationConfig';
export default class AutomationsInternal implements AutomationsApi {
setDelegate(delegate: AutomationsDelegate): void;
setNotificationsToken(token: string): void;
handleNotification(notificationData: Map<String, Object>): Promise<boolean>;
getNotificationCustomPayload(notificationData: Map<string, Object>): Promise<Map<string, Object> | null>;
showScreen(screenId: string): Promise<void>;
setScreenPresentationConfig(config: ScreenPresentationConfig, screenId?: string): void;
private static subscribe;
}