UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

10 lines (9 loc) 220 B
/** * Type of transfer. * @see "Section 13.9.2.4.4, OFX Spec" */ export declare enum TransferAction { IN = 0, OUT = 1 } export declare function TransferAction_fromOfx(ofxVal: string): TransferAction;