From 8c4694f708fec310fc13193cc7fda40d971ed847 Mon Sep 17 00:00:00 2001 From: Luna Wei Date: Thu, 11 May 2023 23:02:25 -0700 Subject: [PATCH] Remove inline props from experimental --- packages/react-native/types/experimental.d.ts | 35 ------------------- 1 file changed, 35 deletions(-) diff --git a/packages/react-native/types/experimental.d.ts b/packages/react-native/types/experimental.d.ts index c58c9ffa10ac00..2d976b5dac23f6 100644 --- a/packages/react-native/types/experimental.d.ts +++ b/packages/react-native/types/experimental.d.ts @@ -38,41 +38,6 @@ export {}; declare module '.' { export interface FlexStyle { - /** - * Equivalent to `top`, `bottom`, `right` and `left` - */ - inset?: DimensionValue | undefined; - - /** - * Equivalent to `top`, `bottom` - */ - insetBlock?: DimensionValue | undefined; - - /** - * Equivalent to `bottom` - */ - insetBlockEnd?: DimensionValue | undefined; - - /** - * Equivalent to `top` - */ - insetBlockStart?: DimensionValue | undefined; - - /** - * Equivalent to `right` and `left` - */ - insetInline?: DimensionValue | undefined; - - /** - * Equivalent to `right` or `left` - */ - insetInlineEnd?: DimensionValue | undefined; - - /** - * Equivalent to `right` or `left` - */ - insetInlineStart?: DimensionValue | undefined; - /** * Equivalent to `marginVertical` */