qmwts 1.1.10 → 1.1.12
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/index.d.ts +2 -1
- package/dist/index.js +3 -1
- package/dist/interfaces/User.d.ts +4 -0
- package/dist/interfaces/User.js +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import NumberUtils from './utils/number-utils';
|
|
2
2
|
import JsonUtils from './utils/json-utils';
|
|
3
3
|
import UUIDUtils from './utils/uuid-utils';
|
|
4
|
-
|
|
4
|
+
import PrototypeUtils from './utils/prototype-utils';
|
|
5
|
+
export { NumberUtils, JsonUtils, UUIDUtils, PrototypeUtils };
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UUIDUtils = exports.JsonUtils = exports.NumberUtils = void 0;
|
|
3
|
+
exports.PrototypeUtils = exports.UUIDUtils = exports.JsonUtils = exports.NumberUtils = void 0;
|
|
4
4
|
// https://www.jianshu.com/p/8fa2c50720e4
|
|
5
5
|
var number_utils_1 = require("./utils/number-utils");
|
|
6
6
|
exports.NumberUtils = number_utils_1.default;
|
|
@@ -8,3 +8,5 @@ var json_utils_1 = require("./utils/json-utils");
|
|
|
8
8
|
exports.JsonUtils = json_utils_1.default;
|
|
9
9
|
var uuid_utils_1 = require("./utils/uuid-utils");
|
|
10
10
|
exports.UUIDUtils = uuid_utils_1.default;
|
|
11
|
+
var prototype_utils_1 = require("./utils/prototype-utils");
|
|
12
|
+
exports.PrototypeUtils = prototype_utils_1.default;
|