UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

10 lines (9 loc) 218 B
/** * Type of position. * @see "Section 13.9.2.4.4, OFX Spec" */ export declare enum PositionType { LONG = 0, SHORT = 1 } export declare function PositionType_fromOfx(ofxVal: string): PositionType;