ofx4js
Version:
A javascript OFX library, ported from OFX4J
21 lines (20 loc) • 526 B
TypeScript
import { BasePosition } from "./BasePosition";
/**
* Aggregate for a list of invesment positions.
* @see "Section 13.9.2.2, OFX Spec"
*/
export declare class InvestmentPositionList {
private positions;
/**
* Gets the list of positions
*
* @return the list of positions
*/
getPositions(): Array<BasePosition>;
/**
* Sets the list of positions.
*
* @param positions the list of positions
*/
setPositions(positions: Array<BasePosition>): void;
}