From 4de16e34f2e9285e8accfafc87d5db319edfcedb Mon Sep 17 00:00:00 2001 From: amritk Date: Sun, 17 Apr 2016 07:54:14 -0700 Subject: [PATCH] Update stripe.d.ts bank params (#8994) Added additional params for creating a bank token as per: https://stripe.com/docs/stripe.js#collecting-bank-account-details --- stripe/stripe.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stripe/stripe.d.ts b/stripe/stripe.d.ts index b07d647936..659c75bf3e 100644 --- a/stripe/stripe.d.ts +++ b/stripe/stripe.d.ts @@ -78,6 +78,8 @@ interface StripeBankTokenParams currency: string; account_number: number | string; routing_number?: number | string; + account_holder_name: string; + account_holder_type: string; } interface StripeBankTokenResponse