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

@karmaniverous/entity-tools

Package Overview
Dependencies
Maintainers
0
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@karmaniverous/entity-tools - npm Package Compare versions

Comparing version 0.6.3 to 0.6.4

8

dist/index.d.ts

@@ -174,7 +174,7 @@ /**

/**
* The base Entity type.
* The base Entity type: string keys with an `unknown` value. All Entities should extend this type.
*
* @category Entities
*/
type Entity = object;
type Entity = Record<string, unknown>;

@@ -237,3 +237,5 @@ /**

*/
type MakeOptional<T, U extends keyof T> = Omit<T, U> & Partial<Pick<T, U>>;
type MakeOptional<T extends object, U extends keyof T> = {
[P in keyof T]: P extends U ? T[P] | undefined : T[P];
};

@@ -240,0 +242,0 @@ /**

@@ -129,3 +129,3 @@ {

"types": "dist/index.d.ts",
"version": "0.6.3",
"version": "0.6.4",
"dependencies": {

@@ -132,0 +132,0 @@ "radash": "^12.1.0"

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