Socket
Socket
Sign inDemoInstall

@types/yup

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/yup - npm Package Compare versions

Comparing version 0.29.3 to 0.29.4

4

yup/index.d.ts

@@ -642,3 +642,5 @@ // Type definitions for yup 0.29

type PreserveOptionals<T> = PreserveNull<T> | PreserveUndefined<T>;
type Id<T> = { [K in keyof T]: T[K] };
type Id<T> = {
[K in keyof T]: T[K] extends object ? InnerInferType<T[K]> : T[K];
};
type RequiredProps<T> = Pick<T, Exclude<keyof T, KeyOfUndefined<T>>>;

@@ -645,0 +647,0 @@ type NotRequiredProps<T> = Partial<Pick<T, KeyOfUndefined<T>>>;

{
"name": "@types/yup",
"version": "0.29.3",
"version": "0.29.4",
"description": "TypeScript definitions for yup",

@@ -87,4 +87,4 @@ "license": "MIT",

"dependencies": {},
"typesPublisherContentHash": "3ee6e54cfb7e97e415a240310151ce9e2b2317b38d6006762108b8d8e3fe77be",
"typesPublisherContentHash": "ad3bea4bf6afb510526ae4619fe8b2f17d1abbcb53034d9fd41297ff24a3c643",
"typeScriptVersion": "3.6"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Fri, 12 Jun 2020 12:27:29 GMT
* Last updated: Mon, 03 Aug 2020 15:34:35 GMT
* Dependencies: none

@@ -14,0 +14,0 @@ * Global values: none

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