UNPKG

cordova-plugin-qonversion

Version:
25 lines (20 loc) 794 B
import {AutomationsApi} from './AutomationsApi'; import AutomationsInternal from './AutomationsInternal'; export class Automations { private constructor() {} private static backingInstance: AutomationsApi | undefined; /** * 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 { if (!this.backingInstance) { this.backingInstance = new AutomationsInternal(); } return this.backingInstance; } }