Files
NativeScript/nativescript-core/ui/utils.android.ts
Nathan Walker da3c0b973d chore: format
2020-07-11 11:01:40 -07:00

14 lines
377 B
TypeScript

export module ios {
export function getActualHeight(view: any): number {
throw new Error("Not implemented for Android");
}
export function getStatusBarHeight(viewController?: any): number {
throw new Error("Not implemented for Android");
}
export function _layoutRootView(rootView: any, parentBounds: any) {
throw new Error("Not implemented for Android");
}
}