@bithomp/xrpl-api 3.1.15 → 3.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/parse/index.d.ts +1 -0
- package/lib/parse/index.js +2 -1
- package/package.json +1 -1
package/lib/parse/index.d.ts
CHANGED
package/lib/parse/index.js
CHANGED
|
@@ -23,9 +23,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.parseTransaction = exports.parseTransactionType = exports.parseOutcome = exports.Utils = exports.Ledger = void 0;
|
|
26
|
+
exports.parseTransaction = exports.parseTransactionType = exports.parseOutcome = exports.Outcomes = exports.Utils = exports.Ledger = void 0;
|
|
27
27
|
exports.Ledger = __importStar(require("./ledger"));
|
|
28
28
|
exports.Utils = __importStar(require("./utils"));
|
|
29
|
+
exports.Outcomes = __importStar(require("./outcome/index"));
|
|
29
30
|
var outcome_1 = require("./outcome");
|
|
30
31
|
Object.defineProperty(exports, "parseOutcome", { enumerable: true, get: function () { return outcome_1.parseOutcome; } });
|
|
31
32
|
var transaction_1 = require("./transaction");
|