src_StorableParams_BoolParamReference.js

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

export class BoolParamReference {
   /**
    * Updates the value
    * @type {boolean}
    */
   val;

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