UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

10 lines (9 loc) 255 B
/** * How a short option is secured. * @see "Section 13.9.2.4.4, OFX Spec" */ export declare enum ShortOptionSecurity { NAKED = 0, COVERED = 1 } export declare function ShortOptionSecurity_fromOfx(ofxVal: string): ShortOptionSecurity;