Files
hydro-builder-app/node_modules/stripe/cjs/resources/ExternalAccounts.d.ts
2026-06-13 17:36:44 -07:00

5 lines
238 B
TypeScript

import { BankAccount, DeletedBankAccount } from './BankAccounts.js';
import { Card, DeletedCard } from './Cards.js';
export type ExternalAccount = BankAccount | Card;
export type DeletedExternalAccount = DeletedBankAccount | DeletedCard;