UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

10 lines (9 loc) 237 B
/** * Type of purchase for stocks and mutual funds. * @see "Section 13.9.2.4.2, OFX Spec" */ export declare enum BuyType { BUY = 0, BUY_TO_COVER = 1 } export declare function BuyType_fromOfx(ofxVal: string): BuyType;