Files
Hristo Deshev 629eb6e683 Use relative imports in tns-core-modules.
Use tns-core-modules/* imports in outside code (apps, tests, etc)
2017-03-13 14:37:59 +02:00

13 lines
470 B
TypeScript

import { View } from "./core/view";
export module ios {
/**
* Gets actual height of a [UIView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIView_Class/) widget.
* @param uiView - An instance of UIView.
*/
export function getActualHeight(uiView: any /* UIView */): number;
export function _layoutRootView(rootView: View, parentBounds: any /* CGRect */): void;
export function getStatusBarHeight(): number;
}