Skip to content

Commit

Permalink
refactor(paypal): fix type of items (#1125)
Browse files Browse the repository at this point in the history
Type of items should be Array<PayPalItem> instead of string.
  • Loading branch information
idroxid authored and ihadeed committed Mar 2, 2017
1 parent 8e0027b commit 0c466d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/pay-pal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 0c466d9

Please sign in to comment.