Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

types-ramda

Package Overview
Dependencies
Maintainers
1
Versions
16
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.29.10 to 0.30.0

es/zipObj.d.ts

12

es/tools.d.ts

@@ -511,1 +511,13 @@ import { A, M } from 'ts-toolbelt';

export type ElementOf<Type extends readonly any[]> = Type[number];
/**
* A clever way to represent a non-empty array
* <created by @harris-miller>
*/
export type NonEmptyArray<T> = [T, ...T[]];
/**
* A clever way to represent a readonly non-empty array
* <created by @harris-miller>
*/
export type ReadonlyNonEmptyArray<T> = readonly [T, ...T[]];

6

package.json
{
"name": "types-ramda",
"version": "0.29.10",
"version": "0.30.0",
"description": "Dedicated types library for ramda",

@@ -70,5 +70,5 @@ "author": "Harris Miller <harrismillerconsulting@gmail.com>",

"eslint-plugin-import": "^2.28.1",
"ramda": "^0.29.1",
"ramda": "^0.30.0",
"rimraf": "^5.0.5",
"tsd": "^0.29.0",
"tsd": "^0.31.0",
"typescript": "^5.2.2",

@@ -75,0 +75,0 @@ "xyz": "^4.0.0"

@@ -511,1 +511,13 @@ import { A, M } from 'ts-toolbelt';

export type ElementOf<Type extends readonly any[]> = Type[number];
/**
* A clever way to represent a non-empty array
* <created by @harris-miller>
*/
export type NonEmptyArray<T> = [T, ...T[]];
/**
* A clever way to represent a readonly non-empty array
* <created by @harris-miller>
*/
export type ReadonlyNonEmptyArray<T> = readonly [T, ...T[]];

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

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