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

@augment-vir/common

Package Overview
Dependencies
Maintainers
1
Versions
222
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@augment-vir/common - npm Package Compare versions

Comparing version 13.5.0 to 14.0.0

5

dist/types/augments/type.d.ts

@@ -12,2 +12,7 @@ import { Except, Simplify } from 'type-fest';

export type Overwrite<T, U> = Pick<T, Exclude<keyof T, keyof U>> & U;
/**
* Require that the NonVoid parameter is not void. If it is void, the ErrorType or an error string
* type is returned. If it not void, the given SuccessType is returned.
*/
export type RequireNonVoid<NonVoid, SuccessType, ErrorType = 'Input should not be void'> = void extends NonVoid ? (NonVoid extends void ? ErrorType : SuccessType) : SuccessType;
/** Extract the element type out of an array type. */

@@ -14,0 +19,0 @@ export type ArrayElement<ArrayType extends ReadonlyArray<any>> = ArrayType[number];

4

package.json
{
"name": "@augment-vir/common",
"version": "13.5.0",
"version": "14.0.0",
"homepage": "https://github.com/electrovir/augment-vir/tree/main/packages/common",

@@ -27,3 +27,3 @@ "bugs": {

"dependencies": {
"type-fest": "^3.8.0"
"type-fest": "^3.10.0"
},

@@ -30,0 +30,0 @@ "devDependencies": {

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