@trackunit/react-test-setup 1.0.30 → 1.0.31

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@trackunit/react-test-setup",
3
3
  "description": "Test setup utilities for React applications",
4
- "version": "1.0.30",
4
+ "version": "1.0.31",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
7
7
  "engines": {
@@ -22,11 +22,11 @@ export declare const setupIntersectionObserver: () => typeof MockIntersectionObs
22
22
  declare class MockIntersectionObserver {
23
23
  readonly root: Element | null;
24
24
  readonly rootMargin: string;
25
- readonly thresholds: readonly number[];
25
+ readonly thresholds: ReadonlyArray<number>;
26
26
  constructor();
27
27
  disconnect(): void;
28
28
  observe(): void;
29
- takeRecords(): IntersectionObserverEntry[];
29
+ takeRecords(): Array<IntersectionObserverEntry>;
30
30
  unobserve(): void;
31
31
  }
32
32
  export {};