@pawover/kit 0.0.0-beta.18 → 0.0.0-beta.19

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.
@@ -1,4 +1,4 @@
1
- import { Et as isEqual, Mt as isFunction, S as objectAssign, ut as isPromiseLike, y as objectKeys } from "./utils-CW39e-1h.js";
1
+ import { Et as isEqual, Mt as isFunction, S as objectAssign, ut as isPromiseLike, y as objectKeys } from "./utils-DET4yd5r.js";
2
2
  import { n as BREAK_POINT_TOKEN_ENUM } from "./enums-Bv0coVvD.js";
3
3
  import { useEffect, useRef, useState } from "react";
4
4
 
package/dist/index.d.ts CHANGED
@@ -1067,7 +1067,8 @@ declare function arrayMerge<T>(initialList: readonly T[], mergeList: readonly T[
1067
1067
  * arrayPick(list, (n) => n % 2 === 0, (n) => n * 2); // [4, 8]
1068
1068
  * ```
1069
1069
  */
1070
- declare function arrayPick<T, K$1 = T>(initialList: readonly T[], filter: (row: T, index: number) => boolean, mapper?: ((row: T, index: number) => K$1) | undefined): T[] | K$1[];
1070
+ declare function arrayPick<const T>(initialList: readonly T[], filter: (row: T, index: number) => boolean): T[];
1071
+ declare function arrayPick<const T, K$1 = T>(initialList: readonly T[], filter: (row: T, index: number) => boolean, mapper: ((row: T, index: number) => K$1)): K$1[];
1071
1072
  //#endregion
1072
1073
  //#region src/utils/array/arrayReplace.d.ts
1073
1074
  /**