@grame/faustwasm 0.7.0 → 0.7.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.
@@ -628,11 +628,11 @@ export interface IFaustBaseWebAudioDsp {
628
628
  */
629
629
  getJSON(): string;
630
630
  /**
631
- * Start the DSP.
631
+ * Start the DSP audio processing.
632
632
  */
633
633
  start(): void;
634
634
  /**
635
- * Stop the DSP.
635
+ * Stop the DSP audio processing.
636
636
  */
637
637
  stop(): void;
638
638
  /**
@@ -1362,9 +1362,9 @@ export declare class FaustScriptProcessorNode<Poly extends boolean = false> exte
1362
1362
  protected fDSPCode: Poly extends true ? FaustPolyWebAudioDsp : FaustMonoWebAudioDsp;
1363
1363
  protected fInputs: Float32Array[];
1364
1364
  protected fOutputs: Float32Array[];
1365
+ protected handleDeviceMotion: any;
1366
+ protected handleDeviceOrientation: any;
1365
1367
  init(instance: Poly extends true ? FaustPolyWebAudioDsp : FaustMonoWebAudioDsp): void;
1366
- private handleDeviceMotion;
1367
- private handleDeviceOrientation;
1368
1368
  /** Setup accelerometer and gyroscope handlers */
1369
1369
  startSensors(): Promise<void>;
1370
1370
  stopSensors(): void;