@stripe/stripe-js
Version:
Stripe.js loading utility
20 lines (18 loc) • 597 B
TypeScript
/**
* Data to be sent with a `stripe.collectFinancialConnectionsAccounts` request.
*/
export interface CollectFinancialConnectionsAccountsOptions {
/**
* The client secret of the [Financial Connections Session](https://stripe.com/docs/api/financial_connections/session).
*/
clientSecret: string;
}
/**
* Data to be sent with a `stripe.collectBankAccountToken` request.
*/
export interface CollectBankAccountTokenOptions {
/**
* The client secret of the [Financial Connections Session](https://stripe.com/docs/api/financial_connections/session).
*/
clientSecret: string;
}