UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

11 lines (10 loc) 375 B
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; }