@types/ramda
Advanced tools
Comparing version 0.27.52 to 0.27.53
{ | ||
"name": "@types/ramda", | ||
"version": "0.27.52", | ||
"version": "0.27.53", | ||
"description": "TypeScript definitions for ramda", | ||
@@ -167,2 +167,7 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ramda", | ||
"githubUsername": "NEWESTERS" | ||
}, | ||
{ | ||
"name": "Wang Zengdi", | ||
"url": "https://github.com/adispring", | ||
"githubUsername": "adispring" | ||
} | ||
@@ -181,4 +186,4 @@ ], | ||
}, | ||
"typesPublisherContentHash": "5837448f0837f2398e7d23d275a7ed8014c563878b0c60ade4a99d8845cd3762", | ||
"typesPublisherContentHash": "36a7b6cba0292543db3a78a10a9b1ee24132b1803885c2729152ef0a1ca8be25", | ||
"typeScriptVersion": "4.2" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Thu, 25 Nov 2021 08:31:03 GMT | ||
* Last updated: Fri, 26 Nov 2021 23:01:05 GMT | ||
* Dependencies: [@types/ts-toolbelt](https://npmjs.com/package/@types/ts-toolbelt) | ||
@@ -17,2 +17,2 @@ * Global values: `R` | ||
# Credits | ||
These definitions were written by [Scott O'Malley](https://github.com/TheHandsomeCoder), [Erwin Poeze](https://github.com/donnut), [Matt DeKrey](https://github.com/mdekrey), [Stephen King](https://github.com/sbking), [Alejandro Fernandez Haro](https://github.com/afharo), [Vítor Castro](https://github.com/teves-castro), [Jordan Quagliatini](https://github.com/1M0reBug), [Simon Højberg](https://github.com/hojberg), [Samson Keung](https://github.com/samsonkeung), [Angelo Ocana](https://github.com/angeloocana), [Rayner Pupo](https://github.com/raynerd), [Nikita Moshensky](https://github.com/moshensky), [Ethan Resnick](https://github.com/ethanresnick), [Tomas Szabo](https://github.com/deftomat), [Maciek Blim](https://github.com/blimusiek), [Marcin Biernat](https://github.com/biern), [Rayhaneh Banyassady](https://github.com/rayhaneh), [Ryan McCuaig](https://github.com/rgm), [Drew Wyatt](https://github.com/drewwyatt), [John Ottenlips](https://github.com/jottenlips), [Nitesh Phadatare](https://github.com/minitesh), [Krantisinh Deshmukh](https://github.com/krantisinh), [Pierre-Antoine Mills](https://github.com/pirix-gh), [Aram Kharazyan](https://github.com/nemo108), [Jituan Lin](https://github.com/jituanlin), [Philippe Mills](https://github.com/Philippe-mills), [Saul Mirone](https://github.com/Saul-Mirone), [Nicholai Nissen](https://github.com/Nicholaiii), [Mike Deverell](https://github.com/devrelm), [Jorge Santana](https://github.com/LORDBABUINO), [Mikael Couzic](https://github.com/couzic), and [Nikita Balikhin](https://github.com/NEWESTERS). | ||
These definitions were written by [Scott O'Malley](https://github.com/TheHandsomeCoder), [Erwin Poeze](https://github.com/donnut), [Matt DeKrey](https://github.com/mdekrey), [Stephen King](https://github.com/sbking), [Alejandro Fernandez Haro](https://github.com/afharo), [Vítor Castro](https://github.com/teves-castro), [Jordan Quagliatini](https://github.com/1M0reBug), [Simon Højberg](https://github.com/hojberg), [Samson Keung](https://github.com/samsonkeung), [Angelo Ocana](https://github.com/angeloocana), [Rayner Pupo](https://github.com/raynerd), [Nikita Moshensky](https://github.com/moshensky), [Ethan Resnick](https://github.com/ethanresnick), [Tomas Szabo](https://github.com/deftomat), [Maciek Blim](https://github.com/blimusiek), [Marcin Biernat](https://github.com/biern), [Rayhaneh Banyassady](https://github.com/rayhaneh), [Ryan McCuaig](https://github.com/rgm), [Drew Wyatt](https://github.com/drewwyatt), [John Ottenlips](https://github.com/jottenlips), [Nitesh Phadatare](https://github.com/minitesh), [Krantisinh Deshmukh](https://github.com/krantisinh), [Pierre-Antoine Mills](https://github.com/pirix-gh), [Aram Kharazyan](https://github.com/nemo108), [Jituan Lin](https://github.com/jituanlin), [Philippe Mills](https://github.com/Philippe-mills), [Saul Mirone](https://github.com/Saul-Mirone), [Nicholai Nissen](https://github.com/Nicholaiii), [Mike Deverell](https://github.com/devrelm), [Jorge Santana](https://github.com/LORDBABUINO), [Mikael Couzic](https://github.com/couzic), [Nikita Balikhin](https://github.com/NEWESTERS), and [Wang Zengdi](https://github.com/adispring). |
@@ -302,2 +302,11 @@ import { A, O, T } from "ts-toolbelt"; | ||
/** | ||
* Represents two value's order | ||
*/ | ||
export type LT = -1; | ||
export type EQ = 0; | ||
export type GT = 1; | ||
export type Ordering = LT | EQ | GT; | ||
/** | ||
* An object with at least one of its properties beeing of type `Key`. | ||
@@ -304,0 +313,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
168242
3380