light-h5-core-lib 2.3.0 → 2.4.0

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.
@@ -6,6 +6,12 @@ import { FloatDigitUtil } from "./common/util/FloatDigitUtil";
6
6
  import { RandomNumUtil } from "./common/util/RandomNumUtil";
7
7
  import { StringUtil } from "./common/util/StringUtil";
8
8
  import { UniqueIDUtil } from "./common/util/UniqueIDUtil";
9
+ var LightCore = /** @class */ (function () {
10
+ function LightCore() {
11
+ }
12
+ return LightCore;
13
+ }());
14
+ export { LightCore };
9
15
  export { PoolObj };
10
16
  export { BaseSingleton };
11
17
  export { BitUtil };
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "light-h5-core-lib",
3
- "version": "2.3.0",
3
+ "version": "2.4.0",
4
4
  "description": "light core lib",
5
- "main": "./Main.js",
5
+ "main": "./LightCore.js",
6
6
  "types": "./type/index.d.ts",
7
7
  "files": [
8
8
  "./type/index.d.ts",
9
- "./Main.js",
9
+ "./LightCore.js",
10
10
  "./common/**/*.js",
11
11
  "./pool/pool.js"
12
12
  ],
package/type/index.d.ts CHANGED
@@ -159,5 +159,7 @@ export declare class UniqueIDUtil {
159
159
  /**生成复合的Key值*/
160
160
  static getCompositeKey(key: string | number, uniqueId: string): string;
161
161
  }
162
+ export declare class LightCore {
163
+ }
162
164
 
163
165
  export {};