@cspell/cspell-types
Advanced tools
Comparing version 8.13.1 to 8.13.2
@@ -14,2 +14,6 @@ /** | ||
export interface FeaturesActive { | ||
/** | ||
* @hidden | ||
*/ | ||
featureName?: boolean; | ||
} | ||
@@ -21,2 +25,6 @@ /** | ||
export interface FeaturesDeprecated { | ||
/** | ||
* @hidden | ||
*/ | ||
featureName?: boolean; | ||
} | ||
@@ -23,0 +31,0 @@ /** |
@@ -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" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
209502
4091