light-h5-core-lib 1.0.0 → 1.0.1
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/package.json +1 -1
- package/type/index.d.ts +9 -0
package/package.json
CHANGED
package/type/index.d.ts
CHANGED
|
@@ -134,5 +134,14 @@ declare class PoolObj<T> implements IClear {
|
|
|
134
134
|
clear(): void;
|
|
135
135
|
destroy(isCleared?: boolean): void;
|
|
136
136
|
}
|
|
137
|
+
export declare const core: {
|
|
138
|
+
BaseSingleton: typeof BaseSingleton;
|
|
139
|
+
PoolObj: typeof PoolObj;
|
|
140
|
+
StringUtil: typeof StringUtil;
|
|
141
|
+
BitUtil: typeof BitUtil;
|
|
142
|
+
DateUtil: typeof DateUtil;
|
|
143
|
+
FloatDigitUtil: typeof FloatDigitUtil;
|
|
144
|
+
RandomNumUtil: typeof RandomNumUtil;
|
|
145
|
+
};
|
|
137
146
|
|
|
138
147
|
export {};
|