mirror of
https://github.com/status-im/react-native-webview.git
synced 2026-08-31 11:41:08 +00:00
Add lib/ folder
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
/* eslint-disable react/no-multi-comp, max-classes-per-file */
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
import { Component } from 'react';
|
||||
var NativeWebViewIOS = /** @class */ (function (_super) {
|
||||
__extends(NativeWebViewIOS, _super);
|
||||
function NativeWebViewIOS() {
|
||||
return _super !== null && _super.apply(this, arguments) || this;
|
||||
}
|
||||
return NativeWebViewIOS;
|
||||
}(NativeWebViewIOSBase));
|
||||
export { NativeWebViewIOS };
|
||||
var NativeWebViewMacOS = /** @class */ (function (_super) {
|
||||
__extends(NativeWebViewMacOS, _super);
|
||||
function NativeWebViewMacOS() {
|
||||
return _super !== null && _super.apply(this, arguments) || this;
|
||||
}
|
||||
return NativeWebViewMacOS;
|
||||
}(NativeWebViewMacOSBase));
|
||||
export { NativeWebViewMacOS };
|
||||
var NativeWebViewAndroid = /** @class */ (function (_super) {
|
||||
__extends(NativeWebViewAndroid, _super);
|
||||
function NativeWebViewAndroid() {
|
||||
return _super !== null && _super.apply(this, arguments) || this;
|
||||
}
|
||||
return NativeWebViewAndroid;
|
||||
}(NativeWebViewAndroidBase));
|
||||
export { NativeWebViewAndroid };
|
||||
var NativeWebViewWindows = /** @class */ (function (_super) {
|
||||
__extends(NativeWebViewWindows, _super);
|
||||
function NativeWebViewWindows() {
|
||||
return _super !== null && _super.apply(this, arguments) || this;
|
||||
}
|
||||
return NativeWebViewWindows;
|
||||
}(NativeWebViewWindowsBase));
|
||||
export { NativeWebViewWindows };
|
||||
export var ContentInsetAdjustmentBehavior;
|
||||
(function (ContentInsetAdjustmentBehavior) {
|
||||
ContentInsetAdjustmentBehavior["automatic"] = "automatic";
|
||||
ContentInsetAdjustmentBehavior["scrollableAxes"] = "scrollableAxes";
|
||||
ContentInsetAdjustmentBehavior["never"] = "never";
|
||||
ContentInsetAdjustmentBehavior["always"] = "always";
|
||||
})(ContentInsetAdjustmentBehavior || (ContentInsetAdjustmentBehavior = {}));
|
||||
;
|
||||
Reference in New Issue
Block a user