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

type-plus

Package Overview
Dependencies
Maintainers
1
Versions
169
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

type-plus - npm Package Compare versions

Comparing version 1.15.0 to 1.15.1

9

lib/JSONTypes.d.ts

@@ -1,1 +0,8 @@

export declare type JSONTypes = boolean | number | string | object | null;
export declare type JSONTypes = boolean | number | string | null | JSONTypes.JSONObject | JSONTypes.JSONArray;
export declare namespace JSONTypes {
interface JSONObject {
[key: string]: JSONTypes;
}
interface JSONArray extends Array<JSONTypes> {
}
}

@@ -1,1 +0,8 @@

export declare type JSONTypes = boolean | number | string | object | null;
export declare type JSONTypes = boolean | number | string | null | JSONTypes.JSONObject | JSONTypes.JSONArray;
export declare namespace JSONTypes {
interface JSONObject {
[key: string]: JSONTypes;
}
interface JSONArray extends Array<JSONTypes> {
}
}

2

package.json
{
"name": "type-plus",
"description": "Provides additional types for `typescript`.",
"version": "1.15.0",
"version": "1.15.1",
"homepage": "https://github.com/unional/type-plus",

@@ -6,0 +6,0 @@ "bugs": {

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