ofx4js
Version:
A javascript OFX library, ported from OFX4J
43 lines (42 loc) • 896 B
TypeScript
import { Transaction } from "./Transaction";
export declare class TransactionList {
private start;
private end;
private transactions;
/**
* The start date.
*
* @return The start date.
*/
getStart(): Date;
/**
* The start date.
*
* @param start The start date.
*/
setStart(start: Date): void;
/**
* The end date.
*
* @return The end date.
*/
getEnd(): Date;
/**
* The end date.
*
* @param end The end date.
*/
setEnd(end: Date): void;
/**
* The transaction list.
*
* @return The transaction list.
*/
getTransactions(): Array<Transaction>;
/**
* The transaction list.
*
* @param transactions The transaction list.
*/
setTransactions(transactions: Array<Transaction>): void;
}