Comparing version 1.0.32 to 1.0.33
@@ -146,3 +146,6 @@ /** | ||
declare namespace RONIN { | ||
export type RecursiveNullish<T> = T extends Array<any> ? { | ||
export type Json = string | number | boolean | null | Array<Json> | { | ||
[T in string]: Json; | ||
}; | ||
export type RecursiveNullish<T> = T extends Json ? T : T extends Array<any> ? { | ||
[K in keyof T]?: RecursiveNullish<T[K]> | null; | ||
@@ -149,0 +152,0 @@ } | null | undefined : T extends Date ? T | null | undefined : T extends Record<string, any> | RONIN.RoninRecord ? { |
{ | ||
"version": "1.0.32", | ||
"version": "1.0.33", | ||
"name": "ronin", | ||
@@ -4,0 +4,0 @@ "scripts": { |
81448
1683