reactotron-react-native
Version:
A development tool to explore, inspect, and diagnose your React Native apps.
12 lines (11 loc) • 362 B
TypeScript
export interface AppDimensions {
screenWidth?: number;
screenHeight?: number;
screenScale?: number;
screenFontScale?: number;
windowWidth?: number;
windowHeight?: number;
windowScale?: number;
windowFontScale?: number;
}
export declare function getReactNativeDimensionsWithDimensions(screen: any, win: any): AppDimensions | null;