Socket
Socket
Sign inDemoInstall

@types/ramda

Package Overview
Dependencies
Maintainers
1
Versions
240
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/ramda - npm Package Compare versions

Comparing version 0.28.11 to 0.28.12

4

ramda/package.json
{
"name": "@types/ramda",
"version": "0.28.11",
"version": "0.28.12",
"description": "TypeScript definitions for ramda",

@@ -175,4 +175,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ramda",

},
"typesPublisherContentHash": "4e71fef01cfcc51d3a9476e0886c6e209d57d6e7b8ccc8a77d4c4d229dffa52d",
"typesPublisherContentHash": "0678b45adeaabba01fbcd0efa054601bcac59b7fff7ba64943cdd5eb01315404",
"typeScriptVersion": "4.2"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Thu, 14 Apr 2022 16:31:19 GMT
* Last updated: Mon, 02 May 2022 21:01:41 GMT
* Dependencies: [@types/ts-toolbelt](https://npmjs.com/package/@types/ts-toolbelt)

@@ -14,0 +14,0 @@ * Global values: `R`

@@ -14,2 +14,22 @@ import { A, M, O, T } from 'ts-toolbelt';

/**
* A type that any constructor is assignable to.
* Use as a generic constraint (`T extends AnyConstructor`)
* and for function parameters (`a: AnyConstructor`).
* Use `new (...args: unknown[]) => unknown` instead for function return types.
*
* <created by @somebody1234>
*/
export type AnyConstructor = new (...args: any[]) => unknown;
/**
* A type that any function is assignable to.
* Use as a generic constraint (`T extends AnyFunction`)
* and for function parameters (`a: AnyFunction`).
* Use `(...args: unknown[]) => unknown` instead for function return types.
*
* <created by @somebody1234>
*/
export type AnyFunction = (...args: any[]) => unknown;
/**
* A function taking 0 arguments.

@@ -435,3 +455,3 @@ * @deprecated Use `() => unknown` instead

*/
export type Path = Array<number | string>;
export type Path = ReadonlyArray<number | string>;

@@ -438,0 +458,0 @@ /**

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc