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