Interface ReadonlyPartialJSONObject

A type definition for a readonly partial JSON object.

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

interface ReadonlyPartialJSONObject {
    [key: string]: ReadonlyPartialJSONValue | undefined;
}

Indexable

[key: string]: ReadonlyPartialJSONValue | undefined