@intelliweave/embedded 1.9.67 → 1.9.69-beta.0

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.
@@ -412,6 +412,8 @@ declare class WebWeaverSpeechOutput extends EventTarget {
412
412
  declare class PCMReceiverNode extends AudioWorkletNode {
413
413
  /** @type {'int16' | 'float32'} The output data format */
414
414
  format: string;
415
+ /** Register worklet with an audio context */
416
+ static registerModule(context: AudioContext): Promise<void>;
415
417
  /**
416
418
  * Creates a new PCMRecorderNode ready to receive PCM data.
417
419
  *
@@ -618,6 +620,8 @@ declare class AudioSystem {
618
620
  static get isSupported(): boolean;
619
621
  /** Constructor */
620
622
  constructor(ai: IntelliWeave);
623
+ /** Register worklets */
624
+ static registerModules(context: AudioContext): Promise<void>;
621
625
  /** Create a named lock to enable the audio system */
622
626
  beginAccess(namedLock: string): Promise<void>;
623
627
  /** Stop accessing the audio system */