ofx4js
Version:
A javascript OFX library, ported from OFX4J
15 lines (14 loc) • 443 B
TypeScript
import { AccountStatement } from "./AccountStatement";
/**
* A specific account at a financial institution.
*/
export interface FinancialInstitutionAccount {
/**
* Read an account statement.
*
* @param start The start date of the statement.
* @param end The end date of the statement.
* @return The account statement.
*/
readStatement(start: Date, end: Date): Promise<AccountStatement>;
}