@grame/faustwasm 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -488,10 +488,10 @@ export declare class Soundfile {
488
488
  getHEAPFloat64(): Float64Array;
489
489
  }
490
490
  /**
491
- * DSP implementation: mimic the C++ 'dsp' class:
491
+ * DSP implementation that mimic the C++ 'dsp' class:
492
492
  * - adding MIDI control: metadata are decoded and incoming MIDI messages will control the associated controllers
493
493
  * - an output handler can be set to treat produced output controllers (like 'bargraph')
494
- * - regular controllers are handled using setParamValue/getParamValue
494
+ * - regular controllers are handled using setParamValue/getParamValue and getParams methods
495
495
  */
496
496
  export interface IFaustBaseWebAudioDsp {
497
497
  /**
@@ -603,12 +603,6 @@ export interface IFaustBaseWebAudioDsp {
603
603
  * @return the DSP JSON description as object
604
604
  */
605
605
  getMeta(): FaustDspMeta;
606
- /**
607
- * Get DSP JSON description with its UI and metadata.
608
- *
609
- * @return the DSP JSON description
610
- */
611
- getJSON(): string;
612
606
  /**
613
607
  * Get DSP UI description.
614
608
  *
@@ -621,6 +615,12 @@ export interface IFaustBaseWebAudioDsp {
621
615
  * @return the DSP UI items description
622
616
  */
623
617
  getDescriptors(): FaustUIInputItem[];
618
+ /**
619
+ * Get DSP JSON description with its UI and metadata.
620
+ *
621
+ * @return the DSP JSON description
622
+ */
623
+ getJSON(): string;
624
624
  /**
625
625
  * Start the DSP.
626
626
  */