@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.
@@ -481,10 +481,10 @@ export declare class Soundfile {
481
481
  getHEAPFloat64(): Float64Array;
482
482
  }
483
483
  /**
484
- * DSP implementation: mimic the C++ 'dsp' class:
484
+ * DSP implementation that mimic the C++ 'dsp' class:
485
485
  * - adding MIDI control: metadata are decoded and incoming MIDI messages will control the associated controllers
486
486
  * - an output handler can be set to treat produced output controllers (like 'bargraph')
487
- * - regular controllers are handled using setParamValue/getParamValue
487
+ * - regular controllers are handled using setParamValue/getParamValue and getParams methods
488
488
  */
489
489
  export interface IFaustBaseWebAudioDsp {
490
490
  /**
@@ -596,12 +596,6 @@ export interface IFaustBaseWebAudioDsp {
596
596
  * @return the DSP JSON description as object
597
597
  */
598
598
  getMeta(): FaustDspMeta;
599
- /**
600
- * Get DSP JSON description with its UI and metadata.
601
- *
602
- * @return the DSP JSON description
603
- */
604
- getJSON(): string;
605
599
  /**
606
600
  * Get DSP UI description.
607
601
  *
@@ -614,6 +608,12 @@ export interface IFaustBaseWebAudioDsp {
614
608
  * @return the DSP UI items description
615
609
  */
616
610
  getDescriptors(): FaustUIInputItem[];
611
+ /**
612
+ * Get DSP JSON description with its UI and metadata.
613
+ *
614
+ * @return the DSP JSON description
615
+ */
616
+ getJSON(): string;
617
617
  /**
618
618
  * Start the DSP.
619
619
  */