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

typelevel-ts

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typelevel-ts - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

5

CHANGELOG.md

@@ -15,2 +15,7 @@ # Changelog

# 0.2.1
- **New Feature**
- add `ObjectOptional`, closes #13 (@thepheer)
# 0.2.0

@@ -17,0 +22,0 @@

1

lib/index.d.ts

@@ -137,2 +137,3 @@ export declare type Increment = {

export declare type ObjectClean<T> = Pick<T, keyof T>;
export declare type ObjectOptional<O, K extends keyof O> = ObjectOmit<O, K> & Partial<Pick<O, K>>;
export declare type PickExact<O, K extends keyof O> = Pick<O, K> & {

@@ -139,0 +140,0 @@ [K1 in StringOmit<keyof O, K>]?: never;

4

package.json
{
"name": "typelevel-ts",
"version": "0.2.0",
"version": "0.2.1",
"description": "Type level programming in TypeScript",

@@ -31,3 +31,3 @@ "files": ["lib"],

"tslint-config-standard": "4.0.0",
"typescript": "^2.5.2",
"typescript": "2.6.0-rc",
"typings-checker": "1.1.2"

@@ -34,0 +34,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