@paypal/sdk-client
Advanced tools
Comparing version 4.0.190 to 4.0.191
{ | ||
"name": "@paypal/sdk-client", | ||
"version": "4.0.190", | ||
"version": "4.0.191", | ||
"description": "Shared config between PayPal/Braintree.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -143,7 +143,8 @@ /* @flow */ | ||
export function getFirstRenderExperiments(): FirstRenderExperiments | null { | ||
export function getFirstRenderExperiments(): FirstRenderExperiments | Object { | ||
if (typeof __FIRST_RENDER_EXPERIMENTS__ !== "undefined") { | ||
return __FIRST_RENDER_EXPERIMENTS__; | ||
} | ||
return {}; | ||
} |
@@ -27,4 +27,4 @@ /* @flow */ | ||
export type FirstRenderExperiments = { | ||
[key: string]: boolean, | ||
}; | ||
export type FirstRenderExperiments = {| | ||
venmoVaultWithoutPurchase?: boolean, | ||
|}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
190463