ofx4js
Version:
A javascript OFX library, ported from OFX4J
15 lines (14 loc) • 339 B
TypeScript
/**
* Types of 401(k) sources.
* @see "Section 13.9.2.4.2, OFX Spec"
*/
export declare enum Inv401KSource {
PRETAX = 0,
AFTER_TAX = 1,
MATCH = 2,
PROFIT_SHARING = 3,
ROLLOVER = 4,
OTHER_VEST = 5,
OTHER_NONVEST = 6
}
export declare function Inv401KSource_fromOfx(ofxVal: string): Inv401KSource;