json-stream-lite - v1.1.0
    Preparing search index...

    Type Alias JsonObjectMember<T>

    JsonObjectMember: {
        [K in keyof T]: {
            key: JsonString<Extract<K, string>>;
            value: JsonValue<T[K]>;
        }
    }[keyof T]

    Type representing the members of a JSON object as key-value pairs. Each member consists of a key of type K and a value of type T[K].

    Type Parameters

    • T extends object