UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

13 lines (12 loc) 293 B
/** * Type of income. * @see "Section 13.9.2.4.2, OFX Spec" */ export declare enum IncomeType { LONG_TERM_CAP_GAINS = 0, SHORT_TERM_CAP_GAINS = 1, DIVIDEND = 2, INTEREST = 3, MISC = 4 } export declare function IncomeType_fromOfx(ofxVal: string): IncomeType;