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

hotypes

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hotypes - npm Package Compare versions

Comparing version 0.1.6 to 0.1.7

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

### [0.1.7](https://github.com/BlackGlory/hotypes/compare/v0.1.6...v0.1.7) (2021-04-25)
### Features
* improve PartialKeys ([ef60fd2](https://github.com/BlackGlory/hotypes/commit/ef60fd2dbaf87a564b28dc5d101918fbb58364d9))
### [0.1.6](https://github.com/BlackGlory/hotypes/compare/v0.1.5...v0.1.6) (2021-04-25)

@@ -7,0 +14,0 @@

6

lib/partial-keys.d.ts

@@ -1,3 +0,5 @@

export declare type PartialKeys<T extends object, Keys> = {
[P in keyof T]: P extends Keys ? T[P] | undefined : T[P];
export declare type PartialKeys<T extends object, Keys extends keyof T> = {
[P in Exclude<keyof T, Keys>]: T[P];
} & {
[P in Keys]?: T[P];
};
{
"name": "hotypes",
"version": "0.1.6",
"version": "0.1.7",
"description": "Higer order types for TypeScript",

@@ -5,0 +5,0 @@ "keywords": [

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