@rtsee/utilities 0.0.103 → 0.0.104
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/dist/utilities/src/RTSeeUtilities.d.ts +6 -0
- package/dist/utilities/src/RTSeeUtilities.d.ts.map +1 -0
- package/dist/utilities/src/RTSeeUtilities.js +31 -0
- package/dist/utilities/src/RTSeeUtilities.js.map +1 -0
- package/dist/utilities/src/index.d.ts +1 -0
- package/dist/utilities/src/index.d.ts.map +1 -1
- package/dist/utilities/src/index.js +1 -0
- package/dist/utilities/src/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RTSeeUtilities.d.ts","sourceRoot":"","sources":["../../../src/RTSeeUtilities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,iBAAiB,EAAE,SAAS,EAAC,MAAM,aAAa,CAAC;AAEzD,qBAAa,cAAe,SAAQ,SAAS;gBAC/B,OAAO,EAAE,iBAAiB;IAItC,OAAO,IAAI,IAAI;CAGhB"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.RTSeeUtilities = void 0;
|
|
19
|
+
var core_1 = require("@rtsee/core");
|
|
20
|
+
var RTSeeUtilities = /** @class */ (function (_super) {
|
|
21
|
+
__extends(RTSeeUtilities, _super);
|
|
22
|
+
function RTSeeUtilities(options) {
|
|
23
|
+
return _super.call(this, options) || this;
|
|
24
|
+
}
|
|
25
|
+
RTSeeUtilities.prototype.onReady = function () {
|
|
26
|
+
console.log("RTSeeUtilities ready");
|
|
27
|
+
};
|
|
28
|
+
return RTSeeUtilities;
|
|
29
|
+
}(core_1.RTSeeCore));
|
|
30
|
+
exports.RTSeeUtilities = RTSeeUtilities;
|
|
31
|
+
//# sourceMappingURL=RTSeeUtilities.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RTSeeUtilities.js","sourceRoot":"","sources":["../../../src/RTSeeUtilities.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,oCAAyD;AAEzD;IAAoC,kCAAS;IAC3C,wBAAY,OAA0B;QACpC,OAAA,MAAK,YAAC,OAAO,CAAC,SAAC;IACjB,CAAC;IAED,gCAAO,GAAP;QACE,OAAO,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC;IACtC,CAAC;IACH,qBAAC;AAAD,CAAC,AARD,CAAoC,gBAAS,GAQ5C;AARY,wCAAc"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC"}
|
|
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./identity-generator"), exports);
|
|
18
|
+
__exportStar(require("./RTSeeUtilities"), exports);
|
|
18
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC;AACrC,mDAAiC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rtsee/utilities",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.104",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/utilities/src/index",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "1b642ce33ceebb6a75cb755ad7bcf9335b15a43a"
|
|
36
36
|
}
|