From 90c45a404cfb859f99e2466c2eec349860463c6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlio=20C=C3=A9sar?= Date: Wed, 21 Jun 2017 13:17:46 -0300 Subject: [PATCH] Add missing aspectRatio property to FlexStyle See https://facebook.github.io/react-native/releases/0.45/docs/layout-props.html#aspectratio --- types/react-native/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index fe2d46c8f1..ea67ed879f 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -542,6 +542,7 @@ export interface FlexStyle { alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" alignItems?: FlexAlignType alignSelf?: "auto" | FlexAlignType + aspectRatio?: number borderBottomWidth?: number borderLeftWidth?: number borderRightWidth?: number