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

@cspell/cspell-types

Package Overview
Dependencies
Maintainers
1
Versions
240
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cspell/cspell-types - npm Package Compare versions

Comparing version 8.13.1 to 8.13.2

8

dist/features.d.ts

@@ -14,2 +14,6 @@ /**

export interface FeaturesActive {
/**
* @hidden
*/
featureName?: boolean;
}

@@ -21,2 +25,6 @@ /**

export interface FeaturesDeprecated {
/**
* @hidden
*/
featureName?: boolean;
}

@@ -23,0 +31,0 @@ /**

2

dist/types.d.ts

@@ -1,2 +0,2 @@

export type Serialize<T> = T extends Function ? never : T extends null ? null : T extends any[] ? SerializeArray<T> : T extends object ? SerializeObj<T> : Primitives<T>;
export type Serialize<T> = T extends () => void ? never : T extends null ? null : T extends any[] ? SerializeArray<T> : T extends object ? SerializeObj<T> : Primitives<T>;
type SerializeObj<T extends object> = {

@@ -3,0 +3,0 @@ [K in keyof T]: K extends string | number ? Serialize<T[K]> : never;

"use strict";
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/ban-types */
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=types.js.map

@@ -6,3 +6,3 @@ {

},
"version": "8.13.1",
"version": "8.13.2",
"description": "Types for cspell and cspell-lib",

@@ -90,3 +90,3 @@ "type": "commonjs",

},
"gitHead": "99cdb4e3e6579c57de1014b0cd3c168188b9c1f5"
"gitHead": "5c9aaf8829991e7d6d37355acb9b9685088bba14"
}
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