UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

12 lines (11 loc) 273 B
/** * Types of well-known sub-accounts. * @see "Section 13.9.2.4.2, OFX Spec" */ export declare enum SubAccountType { CASH = 0, MARGIN = 1, SHORT = 2, OTHER = 3 } export declare function SubAccountType_fromOfx(ofxVal: string): SubAccountType;