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

@ts-common/json

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ts-common/json - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

4

index.d.ts

@@ -18,3 +18,3 @@ import { StringMap } from "@ts-common/string-map";

export declare const stringify: (json: Json) => string;
export declare type NotUndefined<T> = T extends undefined ? never : T;
export declare type Property<T, K extends keyof T> = NotUndefined<T[K]>;
export declare type NonUndefined<T> = T extends undefined ? never : T;
export declare type Property<T, K extends keyof T> = NonUndefined<T[K]>;
{
"name": "@ts-common/json",
"version": "0.0.7",
"version": "0.0.8",
"description": "JSON Data Type",

@@ -27,8 +27,8 @@ "main": "index.js",

"tslint": "^5.11.0",
"typescript": "3.0.0-rc"
"typescript": "^3.0.1"
},
"dependencies": {
"@ts-common/iterator": "0.0.30",
"@ts-common/string-map": "0.0.5"
"@ts-common/string-map": "0.0.6"
}
}
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