1 | export var ios;
|
2 | (function (ios) {
|
3 | function getActualHeight(view) {
|
4 | throw new Error('Not implemented for Android');
|
5 | }
|
6 | ios.getActualHeight = getActualHeight;
|
7 | function getStatusBarHeight(viewController) {
|
8 | throw new Error('Not implemented for Android');
|
9 | }
|
10 | ios.getStatusBarHeight = getStatusBarHeight;
|
11 | function _layoutRootView(rootView, parentBounds) {
|
12 | throw new Error('Not implemented for Android');
|
13 | }
|
14 | ios._layoutRootView = _layoutRootView;
|
15 | })(ios || (ios = {}));
|
16 |
|
\ | No newline at end of file |