cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
11 lines (10 loc) • 509 B
TypeScript
import { AutomationsDelegate } from "./AutomationsDelegate";
import { AutomationsApi } from './AutomationsApi';
import { ScreenPresentationConfig } from './ScreenPresentationConfig';
export default class AutomationsInternal implements AutomationsApi {
private automationsDelegate;
setDelegate(delegate: AutomationsDelegate): void;
showScreen(screenId: string): Promise<void>;
setScreenPresentationConfig(config: ScreenPresentationConfig, screenId?: string): void;
private onNativeEvent;
}