UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

10 lines (9 loc) 248 B
/** * Type of sale for options. * @see "Section 13.9.2.4.2, OFX Spec" */ export declare enum OptionSellType { SELL_TO_CLOSE = 0, SELL_TO_OPEN = 1 } export declare function OptionSellType_fromOfx(ofxVal: string): OptionSellType;