@types/ramda
Advanced tools
Comparing version 0.27.24 to 0.27.25
{ | ||
"name": "@types/ramda", | ||
"version": "0.27.24", | ||
"version": "0.27.25", | ||
"description": "TypeScript definitions for ramda", | ||
@@ -169,4 +169,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "75794997734d6d2ab43574f57f6dd9f1e6c0e3e9604ecbf2d2b193686c3e63f4", | ||
"typesPublisherContentHash": "1980948b386e676bffd47b177eb2cad9f5acf8998e408e13d3bc59064f272695", | ||
"typeScriptVersion": "3.7" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Mon, 12 Oct 2020 12:05:43 GMT | ||
* Last updated: Tue, 13 Oct 2020 08:03:00 GMT | ||
* Dependencies: [@types/ts-toolbelt](https://npmjs.com/package/@types/ts-toolbelt) | ||
@@ -14,0 +14,0 @@ * Global values: `R` |
@@ -307,5 +307,5 @@ import { A, O, T } from "ts-toolbelt"; | ||
/** | ||
* <needs description> | ||
* Predicate for an object containing the key. | ||
*/ | ||
export type ObjPred = (value: any, key: string) => boolean; | ||
export type ObjPred<T = unknown> = (value: any, key: unknown extends T ? string : keyof T) => boolean; | ||
@@ -312,0 +312,0 @@ /** |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
162194