@mrnafisia/type-query
Advanced tools
Comparing version 1.0.22 to 1.0.23
@@ -0,1 +1,2 @@ | ||
import Decimal from 'decimal.js'; | ||
declare type JSON = JsonObject | JsonArray; | ||
@@ -6,4 +7,4 @@ declare type JsonObject = { | ||
declare type JsonArray = BaseJsonValue[]; | ||
declare type BaseJsonValue = JsonObject | JsonArray | string | number | boolean | null; | ||
declare type BaseJsonValue = null | boolean | number | bigint | Decimal | string | Date | JsonObject | JsonArray; | ||
export type { JSON, JsonObject, JsonArray, BaseJsonValue }; | ||
//# sourceMappingURL=json.d.ts.map |
{ | ||
"name": "@mrnafisia/type-query", | ||
"version": "1.0.22", | ||
"version": "1.0.23", | ||
"description": "mini-orm with full type support for postgres.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
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
517426
7747