type-plus
Advanced tools
Comparing version 1.15.0 to 1.15.1
@@ -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> { | ||
} | ||
} |
{ | ||
"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": { |
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
37962
472