refactor(paypal): fix type of items (#1125)

Type of items should be Array<PayPalItem> instead of string.
This commit is contained in:
idroxid
2017-03-02 01:38:43 +01:00
committed by Ibby Hadeed
parent 8e0027b974
commit 0c466d9739
+1 -1
View File
@@ -193,7 +193,7 @@ export class PayPalPayment {
/**
* Optional array of PayPalItem objects.
*/
items: string;
items: Array<PayPalItem>;
/**
* Optional customer shipping address, if your app wishes to provide this to the SDK.