UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

21 lines (20 loc) 580 B
import { BalanceRecord } from "../../common/BalanceRecord"; /** * Aggregate for the investment balance list. * @see "Section 13.9.2.7, OFX Spec" */ export declare class BalanceList { private balanceRecords; /** * Gets the list of balance records. * * @return the list of balance records. */ getBalanceRecords(): Array<BalanceRecord>; /** * Sets the list of balance records. * * @param balanceRecords the list of balance records. */ setBalanceRecords(balanceRecords: Array<BalanceRecord>): void; }