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
This commit is contained in:
amritk
2016-04-17 07:54:14 -07:00
committed by Masahiro Wakame
parent a3640e13de
commit 4de16e34f2

2
stripe/stripe.d.ts vendored
View File

@@ -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