/** JSON scalar value. */ export type JsonPrimitive = null | boolean | number | string; /** JSON object with recursively JSON-safe values. */ export type JsonObject = { readonly [key: string]: JsonValue; }; /** Value accepted by JSON serialization without custom coercion. */ export type JsonValue = JsonPrimitive | JsonObject | readonly JsonValue[]; //# sourceMappingURL=json.d.ts.map