@revenuecat/purchases-js 0.1.3 → 0.2.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.
- package/dist/Purchases.es.d.ts +4 -0
- package/dist/Purchases.es.js +584 -580
- package/dist/Purchases.umd.js +4 -4
- package/package.json +1 -1
package/dist/Purchases.es.d.ts
CHANGED
|
@@ -366,6 +366,10 @@ export declare interface Price {
|
|
|
366
366
|
* If currency code cannot be determined, currency symbol is returned.
|
|
367
367
|
*/
|
|
368
368
|
readonly currency: string;
|
|
369
|
+
/**
|
|
370
|
+
* Formatted price string including price and currency.
|
|
371
|
+
*/
|
|
372
|
+
readonly formattedPrice: string;
|
|
369
373
|
}
|
|
370
374
|
|
|
371
375
|
/**
|