@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.
- package/dist/component/component.d.ts +4 -0
- package/dist/component/component.js +22 -19
- package/dist/intelliweave-wordpress.zip +0 -0
- package/dist/node/node.d.ts +4 -0
- package/dist/node/node.js +7 -4
- package/dist/react/react.d.ts +4 -0
- package/dist/react/react.js +22 -19
- package/dist/script-tag/script-tag.js +49 -46
- package/dist/webpack/index.d.ts +6 -0
- package/dist/webpack/index.js +23 -20
- package/package.json +1 -1
|
@@ -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 */
|