radashi 12.2.0-beta.68f53c8 → 12.2.0-beta.9e3d6f7

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/dist/index.d.cts CHANGED
@@ -516,9 +516,7 @@ type ValueOf<T extends object> = object extends T ? unknown : T[keyof T];
516
516
  type KeyFilterFunction<T extends object = object> = (value: ValueOf<T>, key: KeyOf<T>, obj: T) => boolean;
517
517
  /**
518
518
  * Functions can use this type to accept either an array of keys or a
519
- * filter callback. This provides type safety for such a parameter
520
- * type, whose value can then be passed into `matchKeys` to receive a
521
- * matching function.
519
+ * filter function.
522
520
  */
523
521
  type KeyFilter<T extends object = object, Key extends keyof any = keyof any> = KeyFilterFunction<T> | readonly Key[];
524
522
  /**
package/dist/index.d.ts CHANGED
@@ -516,9 +516,7 @@ type ValueOf<T extends object> = object extends T ? unknown : T[keyof T];
516
516
  type KeyFilterFunction<T extends object = object> = (value: ValueOf<T>, key: KeyOf<T>, obj: T) => boolean;
517
517
  /**
518
518
  * Functions can use this type to accept either an array of keys or a
519
- * filter callback. This provides type safety for such a parameter
520
- * type, whose value can then be passed into `matchKeys` to receive a
521
- * matching function.
519
+ * filter function.
522
520
  */
523
521
  type KeyFilter<T extends object = object, Key extends keyof any = keyof any> = KeyFilterFunction<T> | readonly Key[];
524
522
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "radashi",
3
- "version": "12.2.0-beta.68f53c8",
3
+ "version": "12.2.0-beta.9e3d6f7",
4
4
  "description": "Functional utility library - modern, simple, typed, powerful",
5
5
  "sideEffects": false,
6
6
  "author": "Alec Larson",