MutableJsonObjectA mutable record whose values are MutableJson values.
modelsMutableJson
Source effect/Schema.ts:142043 lines
export interface MutableJsonObject {
[x: stringx: string]: type MutableJson =
| string
| number
| boolean
| MutableJsonArray
| MutableJsonObject
| null
Recursive TypeScript type for mutable JSON values: null, number,
boolean, string, mutable arrays, or mutable string-keyed records.
Schema that accepts any mutable JSON-compatible value. See
Json
for
the immutable variant.
MutableJson
}Referenced by 1 symbols