types-ramda
Advanced tools
Comparing version 0.29.10 to 0.30.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[]]; |
{ | ||
"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
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
509403
11
13772