@haluo/util 2.0.10 → 2.0.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.js +13 -0
- package/dist/modules/cookie/index.js +2 -2
- package/dist/modules/date/index.js +11 -11
- package/dist/modules/dom/index.js +1 -1
- package/dist/modules/monitor/index.js +2 -2
- package/dist/modules/monitor/lib/jsError.js +3 -2
- package/dist/modules/monitor/lib/timing.js +1 -1
- package/dist/modules/monitor/lib/xhr.js +1 -1
- package/dist/modules/monitor/utils/tracker.js +0 -1
- package/dist/modules/number/index.js +3 -3
- package/dist/modules/tools/index.js +4 -4
- package/dist/tsconfig.tsbuildinfo +1452 -1
- package/dist/types/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ import format from './modules/format';
|
|
|
6
6
|
import match from './modules/match';
|
|
7
7
|
import number from './modules/number';
|
|
8
8
|
import tools from './modules/tools';
|
|
9
|
+
import monitor from './modules/monitor';
|
|
10
|
+
export * from './modules/monitor';
|
|
9
11
|
interface Modules {
|
|
10
12
|
cookie: typeof cookie;
|
|
11
13
|
date: typeof date;
|
|
@@ -15,6 +17,7 @@ interface Modules {
|
|
|
15
17
|
match: typeof match;
|
|
16
18
|
number: typeof number;
|
|
17
19
|
tools: typeof tools;
|
|
20
|
+
monitor: typeof monitor;
|
|
18
21
|
}
|
|
19
22
|
declare class Utils {
|
|
20
23
|
constructor();
|