Saxonberg Server API
    Preparing search index...

    Plain-object data shape mirroring a Light's public-readonly fields. Used by Light.from for coercing externally-sourced data shapes (test fixtures, JSON over the wire) into a Light value object.

    NOT used as a persistence shape — the persistence subsystem decomposes Light values into scalar fields instead.

    interface LightDataShape {
        colorTemperature?: string | Quantity<"K"> | null;
        intensity: number | Quantity<"lux">;
        sources?: readonly LightSourceRef[];
    }
    Index

    Properties

    colorTemperature?: string | Quantity<"K"> | null
    intensity: number | Quantity<"lux">
    sources?: readonly LightSourceRef[]