@haluo/util 2.0.7 → 2.0.8

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.
Files changed (38) hide show
  1. package/dist/index.js +34 -20
  2. package/dist/modules/cookie/index.js +2 -1
  3. package/dist/modules/date/index.js +1 -1
  4. package/dist/modules/dom/index.js +1 -1
  5. package/dist/modules/filter/index.js +11 -20
  6. package/dist/modules/format/index.js +2 -1
  7. package/dist/modules/match/index.js +1 -1
  8. package/dist/modules/monitor/lib/jsError.js +3 -10
  9. package/dist/modules/monitor/lib/xhr.js +1 -3
  10. package/dist/modules/monitor/utils/tracker.js +1 -23
  11. package/dist/modules/number/index.js +2 -1
  12. package/dist/modules/sentry/index.js +9 -6
  13. package/dist/modules/tools/index.js +1 -1
  14. package/dist/tsconfig.tsbuildinfo +71 -1536
  15. package/dist/types/index.d.ts +24 -3
  16. package/dist/types/modules/cookie/index.d.ts +2 -0
  17. package/dist/types/modules/date/index.d.ts +52 -1
  18. package/dist/types/modules/dom/index.d.ts +28 -1
  19. package/dist/types/modules/filter/index.d.ts +4 -6
  20. package/dist/types/modules/format/index.d.ts +2 -0
  21. package/dist/types/modules/match/index.d.ts +12 -1
  22. package/dist/types/modules/monitor/utils/tracker.d.ts +0 -1
  23. package/dist/types/modules/number/index.d.ts +3 -1
  24. package/dist/types/modules/tools/index.d.ts +166 -1
  25. package/package.json +1 -1
  26. package/dist/index.cjs.js +0 -89
  27. package/dist/index.d.ts +0 -12
  28. package/dist/index.esm.js +0 -87
  29. package/dist/lib-list.d.ts +0 -2
  30. package/dist/modules/cookie/index.d.ts +0 -27
  31. package/dist/modules/date/index.d.ts +0 -1
  32. package/dist/modules/dom/index.d.ts +0 -1
  33. package/dist/modules/filter/index.d.ts +0 -26
  34. package/dist/modules/format/index.d.ts +0 -13
  35. package/dist/modules/match/index.d.ts +0 -1
  36. package/dist/modules/number/index.d.ts +0 -39
  37. package/dist/modules/sentry/index.d.ts +0 -15
  38. package/dist/modules/tools/index.d.ts +0 -1
@@ -1,15 +0,0 @@
1
- declare class Report {
2
- static instance: any;
3
- constructor(Vue: Object, options?: {});
4
- [key: string]: any;
5
- static getInstance(Vue: Object, Option: Object): any;
6
- install(): void;
7
- /**
8
- * 主动上报
9
- * @param {String} data
10
- * @param {String} type 'info','warning','error'
11
- * @param {Object} options
12
- */
13
- log(data?: any, type?: any, options?: any): void;
14
- }
15
- export default Report;
@@ -1 +0,0 @@
1
- export {};