New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@loadmill/universal

Package Overview
Dependencies
Maintainers
3
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@loadmill/universal - npm Package Compare versions

Comparing version 0.3.70 to 0.3.71

dist/json-utils.d.ts

7

dist/typescript-utils.d.ts

@@ -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>;

2

package.json
{
"name": "@loadmill/universal",
"version": "0.3.70",
"version": "0.3.71",
"description": "Loadmill universal utilities",

@@ -5,0 +5,0 @@ "main": "dist/",

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