Represents a mutable JSON object with string keys and MutableJsonValue values. All properties can be modified after creation, making it suitable for building or transforming JSON structures.
MutableJsonValue
const builder: MutableJsonObject = {};builder.timestamp = Date.now();builder.data = { message: "Hello" };builder.tags = ["info", "user-action"];// All modifications are allowedbuilder.data = { message: "Updated" }; // ✓ valid Copy
const builder: MutableJsonObject = {};builder.timestamp = Date.now();builder.data = { message: "Hello" };builder.tags = ["info", "user-action"];// All modifications are allowedbuilder.data = { message: "Updated" }; // ✓ valid
Represents a mutable JSON object with string keys and
MutableJsonValuevalues. All properties can be modified after creation, making it suitable for building or transforming JSON structures.