Comparing version 3.1.1 to 3.1.2
export declare type Json = string | number | boolean | null | { | ||
[property: string]: Json; | ||
} | Json[]; | ||
export interface Jsonable<T extends Json> { | ||
export interface Jsonable<T extends Json | Record<string, Json | Jsonable<any>> | Array<Json | Jsonable<any>>> { | ||
toJSON(key: string): T; | ||
} |
{ | ||
"name": "justypes", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"description": "Dumb types for TypeScript in the real world", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
10645