src_StorableParams_ColorParamReference.js

/**
* Represents a JSONStorableColor in the Scripter plugin
*/
export class ColorParamReference {
   /**
    * Updates the value (html color, e.g. #FF0000)
    * @type {string}
    */
   val;

    /**
    * Updates the value without invoking onChange
     * @type {string}
     */
    valNoCallback;
}