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 +1 -3
- package/dist/index.d.ts +1 -3
- package/package.json +1 -1
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
|
|
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
|
|
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
|
/**
|