UNPKG
ofx4js
Version:
latest (2.1.0)
2.1.0
2.0.1
2.0.0
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A javascript OFX library, ported from OFX4J
github.com/arolson101/ofx4js
arolson101/ofx4js
ofx4js
/
lib
/
domain
/
data
/
seclist
/
CouponFrequency.d.ts
13 lines
(12 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * Coupon freqency for debt. *
@see
"Section 13.8.5.2, OFX Spec" */
export
declare
enum
CouponFrequency
{ MONTHLY =
0
, QUARTERLY =
1
, SEMIANNUAL =
2
, ANNUAL =
3
, OTHER =
4
} export
declare
function
CouponFrequency_fromOfx
(
ofxVal:
string
):
CouponFrequency
;