@coveo/quantic 3.30.3-pre.b2e63425b4 → 3.30.3-pre.b400a05b95

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.
@@ -9,4 +9,4 @@ export declare function arrayEqual<T>(firstArray: T[], secondArray: T[], isEqual
9
9
  * @returns `true` if the arrays have the same elements in different orders, `false` otherwise. Unless the two arrays have only one identical element each, this function will return `false` if the two arrays have the same elements in the same order.
10
10
  */
11
11
  export declare const arrayEqualStrictlyDifferentOrder: <T extends Exclude<PrimitivesValues, object>>(firstArray: T[], secondArray: T[]) => boolean;
12
- export declare function deepEqualAnyOrder<T>(a: T, b: T): boolean;
12
+ export declare const deepEqualAnyOrder: <T>(a: T, b: T) => boolean;
@@ -27,6 +27,3 @@ export declare function createWaitForActionMiddlewareForRecommendation<TAction e
27
27
  promise: Promise<TAction>;
28
28
  middleware: Middleware;
29
29
  };
30
- export declare function debounce<T extends (...args: unknown[]) => unknown>(func: T, wait: number, options?: {
31
- isImmediate?: boolean;
32
- }): T;