From 374fb2e15061878ca9316b5a494a69a02a9ab8d7 Mon Sep 17 00:00:00 2001 From: Behrooz Date: Mon, 28 Jan 2019 20:51:49 -0500 Subject: [PATCH] Fix balance_transaction type in IRefund balance_transaction could be either a string or a balance.IBalanceTransaction, since it is an "Expandable". --- types/stripe/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/stripe/index.d.ts b/types/stripe/index.d.ts index bbb003eca0..3f2cc311b6 100644 --- a/types/stripe/index.d.ts +++ b/types/stripe/index.d.ts @@ -5062,7 +5062,7 @@ declare namespace Stripe { /** * Balance transaction that describes the impact of this reversal on your account balance. */ - balance_transaction: string; + balance_transaction: string | balance.IBalanceTransaction; /** * ID of the charge that was refunded. [Expandable]