UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

11 lines (10 loc) 265 B
/** * Activation status of an account. * @see "Section 13.6.2, OFX Spec" */ export declare enum ActivationStatus { ACTIVE = 0, PENDING = 1, AVAILABLE = 2 } export declare function ActivationStatus_fromOfx(ofxVal: string): ActivationStatus;