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
15 lines (14 loc) • 598 B
TypeScript
import AutomationsApi from './AutomationsApi';
export default class Automations {
private constructor();
private static backingInstance;
/**
* Use this variable to get a current initialized instance of the Qonversion Automations.
* Please, use Automations only after calling {@link Qonversion.initialize}.
* Otherwise, trying to access the variable will cause an error.
*
* @return Current initialized instance of the Qonversion Automations.
* @throws error if Qonversion has not been initialized.
*/
static getSharedInstance(): AutomationsApi;
}