@types/ramda
Advanced tools
Comparing version 0.27.45 to 0.27.46
{ | ||
"name": "@types/ramda", | ||
"version": "0.27.45", | ||
"version": "0.27.46", | ||
"description": "TypeScript definitions for ramda", | ||
@@ -175,4 +175,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ramda", | ||
}, | ||
"typesPublisherContentHash": "b239ce98f2d25ea647749adbf2362bb0d605c6215ab6a7da5dc536b7b802b11a", | ||
"typesPublisherContentHash": "859e5aa21870e6e3566ec241a65f3f2b5ebde7b471c79fea2f35ebd8a122ccbc", | ||
"typeScriptVersion": "4.2" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Sat, 25 Sep 2021 02:02:07 GMT | ||
* Last updated: Tue, 26 Oct 2021 19:31:20 GMT | ||
* Dependencies: [@types/ts-toolbelt](https://npmjs.com/package/@types/ts-toolbelt) | ||
@@ -14,0 +14,0 @@ * Global values: `R` |
@@ -45,6 +45,5 @@ import { A, O, T } from "ts-toolbelt"; | ||
*/ | ||
export interface AssocPartialOne<K extends keyof any> { | ||
<T>(val: T): <U>(obj: U) => Record<K, T> & U; | ||
<T, U>(val: T, obj: U): Record<K, T> & U; | ||
} | ||
export type AssocPartialOne<K extends keyof any> = | ||
(<T>(val: T) => <U>(obj: U) => Record<K, T> & Omit<U, K>) | ||
& (<T, U>(val: T, obj: U) => Record<K, T> & Omit<U, K>); | ||
@@ -51,0 +50,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
165980
3362