drapcode-constant 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.repaymentStatus = exports.repaymentTypes = void 0;
|
4
|
+
exports.repaymentTypes = {
|
5
|
+
SIMPLE_INTEREST: "SIMPLE_INTEREST",
|
6
|
+
COMPOUND_INTEREST: "COMPOUND_INTEREST",
|
7
|
+
};
|
8
|
+
exports.repaymentStatus = { PAID: "PAID", PENDING: "PENDING" };
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
@@ -22,3 +22,4 @@ __exportStar(require("./constants/externalApi"), exports);
|
|
22
22
|
__exportStar(require("./constants/FieldTypes"), exports);
|
23
23
|
__exportStar(require("./constants/collection"), exports);
|
24
24
|
__exportStar(require("./constants/messages"), exports);
|
25
|
+
__exportStar(require("./constants/loan"), exports);
|