@expo/config-types 52.0.0-preview.3 → 52.0.0
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.
- package/build/ExpoConfig.d.ts +5 -5
- package/package.json +2 -2
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -466,7 +466,7 @@ export interface IOS {
|
|
|
466
466
|
*/
|
|
467
467
|
usesAppleSignIn?: boolean;
|
|
468
468
|
/**
|
|
469
|
-
*
|
|
469
|
+
* A boolean indicating if the app uses Push Notifications Broadcast option for Push Notifications capability. If true, EAS CLI will use the value during capability syncing. If EAS CLI is not used, this configuration will not have any effect unless another tool is used to operate on it, so enable the capability manually on the Apple Developer Portal in that case.
|
|
470
470
|
*/
|
|
471
471
|
usesBroadcastPushNotifications?: boolean;
|
|
472
472
|
/**
|
|
@@ -537,15 +537,15 @@ export interface IOS {
|
|
|
537
537
|
*/
|
|
538
538
|
export interface IOSIcons {
|
|
539
539
|
/**
|
|
540
|
-
* The icon
|
|
540
|
+
* The light icon. It will appear when neither dark nor tinted icons are used, or if they are not provided.
|
|
541
541
|
*/
|
|
542
|
-
|
|
542
|
+
light?: string;
|
|
543
543
|
/**
|
|
544
|
-
* The icon
|
|
544
|
+
* The dark icon. It will appear for the app when the user's system appearance is dark. See Apple's [Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/app-icons#iOS-iPadOS) for more information.
|
|
545
545
|
*/
|
|
546
546
|
dark?: string;
|
|
547
547
|
/**
|
|
548
|
-
* The icon
|
|
548
|
+
* The tinted icon. It will appear for the app when the user's system appearance is tinted. See Apple's [Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/app-icons#iOS-iPadOS) for more information.
|
|
549
549
|
*/
|
|
550
550
|
tinted?: string;
|
|
551
551
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "52.0.0
|
|
3
|
+
"version": "52.0.0",
|
|
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",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "8f11fad6f46b878de4746b49b18599fc57b5729f"
|
|
48
48
|
}
|