mirror of
				https://github.com/NativeScript/NativeScript.git
				synced 2025-11-04 21:06:45 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			380 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			380 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export namespace 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');
 | 
						|
	}
 | 
						|
}
 |