@expo/config-types 54.0.0 → 54.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -824,6 +824,10 @@ export interface Android {
824
824
  * Enable your app to run in [edge-to-edge](https://developer.android.com/develop/ui/views/layout/edge-to-edge) mode. Default to false.
825
825
  */
826
826
  edgeToEdgeEnabled?: boolean;
827
+ /**
828
+ * Enable your app to use the [predictive back gesture](https://developer.android.com/guide/navigation/custom-back/predictive-back-gesture) on Android 13 (API level 33) and later. Default to false.
829
+ */
830
+ predictiveBackGestureEnabled?: boolean;
827
831
  }
828
832
  export interface AndroidIntentFiltersData {
829
833
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "54.0.0",
3
+ "version": "54.0.1",
4
4
  "description": "Types for the Expo config object app.config.ts",
5
5
  "types": "build/ExpoConfig.d.ts",
6
6
  "main": "build/ExpoConfig.js",
@@ -37,11 +37,11 @@
37
37
  "build"
38
38
  ],
39
39
  "devDependencies": {
40
- "expo-module-scripts": "^5.0.0",
40
+ "expo-module-scripts": "^5.0.1",
41
41
  "json-schema-to-typescript": "^14.0.5"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "cb7062e2c17d1fb09522834aaaac0e19b766df62"
46
+ "gitHead": "2f7f90d0736af48cb542ccbc8addb836e330693a"
47
47
  }