ofx4js
Version:
A javascript OFX library, ported from OFX4J
11 lines (10 loc) • 426 B
TypeScript
import { FinancialInstitutionAccount } from "./FinancialInstitutionAccount";
import { CreditCardAccountDetails } from "../domain/data/creditcard/CreditCardAccountDetails";
export interface CreditCardAccount extends FinancialInstitutionAccount {
/**
* The details of the credit card account.
*
* @return The details of the credit card account.
*/
getDetails(): CreditCardAccountDetails;
}