UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

11 lines (10 loc) 246 B
/** * Reason debt was sold. * @see "Section 13.9.2.4.2, OFX Spec" */ export declare enum SellDebtReason { CALL = 0, SELL = 1, MATURITY = 2 } export declare function SellDebtReason_fromOfx(ofxVal: string): SellDebtReason;