@loadmill/universal
Advanced tools
Comparing version 0.3.70 to 0.3.71
@@ -20,2 +20,9 @@ /** | ||
export declare type ParseJson = (number | string | boolean | null | object) | Array<(number | string | boolean | null | object) | Array<(number | string | boolean | null | object) | Array<any>>>; | ||
/** | ||
* Make a set of properties K optional in T | ||
*/ | ||
export declare type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>; | ||
/** | ||
* Make all properties in T optional except a set of properties K | ||
*/ | ||
export declare type PartialWithExcludes<T, K extends keyof T> = Pick<T, K> & Partial<T>; |
{ | ||
"name": "@loadmill/universal", | ||
"version": "0.3.70", | ||
"version": "0.3.71", | ||
"description": "Loadmill universal utilities", | ||
@@ -5,0 +5,0 @@ "main": "dist/", |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
97503
82
1633
0