ofx4js
Version:
A javascript OFX library, ported from OFX4J
22 lines (21 loc) • 506 B
TypeScript
import { SignonInfo } from "./SignonInfo";
/**
* List of signon information.
*
* @see "Section 7.2.2, OFX Spec"
*/
export declare class SignonInfoList {
private infoList;
/**
* List of sign-on information.
*
* @return List of sign-on information.
*/
getInfoList(): Array<SignonInfo>;
/**
* List of sign-on information.
*
* @param infoList List of sign-on information.
*/
setInfoList(infoList: Array<SignonInfo>): void;
}