src_StorableParams_FloatParamReference.js

/**
* Represents a JSONStorableFloat in the Scripter plugin
*/

export class FloatParamReference {
   /**
    * Updates the value
    * @type {number}
    */
   val;

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