@rich-automation/lotto 0.0.3 → 0.0.4
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/cjs/index.js +3 -1
- package/lib/esm/index.js +1 -0
- package/lib/typescript/index.d.ts +1 -0
- package/package.json +1 -1
package/lib/cjs/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LottoService = void 0;
|
|
3
|
+
exports.getCurrentLottoRound = exports.LottoService = void 0;
|
|
4
4
|
var lottoService_1 = require("./lottoService");
|
|
5
5
|
Object.defineProperty(exports, "LottoService", { enumerable: true, get: function () { return lottoService_1.LottoService; } });
|
|
6
|
+
var getCurrentLottoRound_1 = require("./utils/getCurrentLottoRound");
|
|
7
|
+
Object.defineProperty(exports, "getCurrentLottoRound", { enumerable: true, get: function () { return getCurrentLottoRound_1.getCurrentLottoRound; } });
|
package/lib/esm/index.js
CHANGED