UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

12 lines (11 loc) 252 B
/** * The class of debt. * @see "Section 13.8.5.2, OFX Spec" */ export declare enum DebtClass { TREASURY = 0, MUNICIPAL = 1, CORPORATE = 2, OTHER = 3 } export declare function DebtClass_fromOfx(ofxVal: string): DebtClass;