@jest/expect-utils 29.7.0 → 30.0.0-alpha.2

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/build/index.d.ts CHANGED
@@ -4,6 +4,7 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
+
7
8
  export declare const arrayBufferEquality: (
8
9
  a: unknown,
9
10
  b: unknown,
@@ -60,9 +61,9 @@ export declare const iterableEquality: (
60
61
  ) => boolean | undefined;
61
62
 
62
63
  export declare const partition: <T>(
63
- items: T[],
64
+ items: Array<T>,
64
65
  predicate: (arg: T) => boolean,
65
- ) => [T[], T[]];
66
+ ) => [Array<T>, Array<T>];
66
67
 
67
68
  export declare const pathAsArray: (propertyPath: string) => Array<any>;
68
69