@capgo/inappbrowser
Version:
Capacitor plugin in app browser
29 lines • 837 B
JavaScript
export var BackgroundColor;
(function (BackgroundColor) {
BackgroundColor["WHITE"] = "white";
BackgroundColor["BLACK"] = "black";
})(BackgroundColor || (BackgroundColor = {}));
export var ToolBarType;
(function (ToolBarType) {
/**
* Shows a simple toolbar with just a close button and share button
* @since 0.1.0
*/
ToolBarType["ACTIVITY"] = "activity";
/**
* Shows a simple toolbar with just a close button
* @since 7.6.8
*/
ToolBarType["COMPACT"] = "compact";
/**
* Shows a full navigation toolbar with back/forward buttons
* @since 0.1.0
*/
ToolBarType["NAVIGATION"] = "navigation";
/**
* Shows no toolbar
* @since 0.1.0
*/
ToolBarType["BLANK"] = "blank";
})(ToolBarType || (ToolBarType = {}));
//# sourceMappingURL=definitions.js.map