Interface PartialJSONObject

A type definition for a partial JSON object.

Note: Partial here means that the JSON object attributes can be undefined.

interface PartialJSONObject {
    [key: string]: PartialJSONValue | undefined;
}

Indexable

[key: string]: PartialJSONValue | undefined