UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

13 lines (12 loc) 297 B
/** * Type of investment account. * * @see "OFX Spec, Section 13.6.2" */ export declare enum InvestmentAccountType { INDIVIDUAL = 0, JOINT = 1, TRUST = 2, CORPORATE = 3 } export declare function InvestmentAccountType_fromOfx(ofxVal: string): InvestmentAccountType;