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

internal

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

internal - npm Package Compare versions

Comparing version 2.0.14 to 2.0.15

2

package.json
{
"name": "internal",
"version": "2.0.14",
"version": "2.0.15",
"files": [

@@ -5,0 +5,0 @@ "**/index.mjs",

@@ -6,8 +6,9 @@ declare type Primitive = string | number | boolean | bigint | symbol | undefined | null;

} : Readonly<T>;
export declare type Json = boolean | number | string | null | JsonArray | JsonMap;
interface JsonMap {
[key: string]: Json;
export declare namespace Json {
type Literal = boolean | number | string | null | Array | Object;
type Object = {
[key: string]: Literal;
};
type Array = Literal[];
}
interface JsonArray extends Array<Json> {
}
export {};
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