cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
23 lines (22 loc) • 745 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ScreenPresentationConfig = void 0;
class ScreenPresentationConfig {
/**
* Describes how screens will be displayed.
* For mode details see the enum description.
*/
presentationStyle;
/**
* iOS only. For Android consider using {@link ScreenPresentationStyle.NO_ANIMATION}.
*
* Describes whether should transaction be animated or not.
* Default value is true.
*/
animated;
constructor(presentationStyle, animated) {
this.presentationStyle = presentationStyle;
this.animated = animated === undefined ? true : animated;
}
}
exports.ScreenPresentationConfig = ScreenPresentationConfig;