@grame/faustwasm 0.12.0 → 0.12.2
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/assets/standalone/faustwasm/index.d.ts +1 -1
- package/assets/standalone/faustwasm/index.js +201 -335
- package/assets/standalone/faustwasm/index.js.map +2 -2
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.js +203 -338
- package/dist/cjs/index.js.map +2 -2
- package/dist/cjs-bundle/index.d.ts +1 -1
- package/dist/cjs-bundle/index.js +385 -687
- package/dist/cjs-bundle/index.js.map +2 -2
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +201 -335
- package/dist/esm/index.js.map +2 -2
- package/dist/esm-bundle/index.d.ts +1 -1
- package/dist/esm-bundle/index.js +385 -687
- package/dist/esm-bundle/index.js.map +2 -2
- package/package.json +2 -3
- package/src/FaustDspGenerator.ts +2 -1
- package/src/FaustWebAudioDsp.ts +2 -2
- package/src/SoundfileReader.ts +3 -3
- package/src/types.ts +1 -1
- package/test/faustlive-wasm/faustwasm/index.d.ts +1 -1
- package/test/faustlive-wasm/faustwasm/index.js +201 -335
- package/test/faustlive-wasm/faustwasm/index.js.map +2 -2
- package/test/organ/create-node.js +252 -0
- package/test/organ/dsp-meta.json +131 -0
- package/test/organ/dsp-module.wasm +0 -0
- package/test/organ/faust-pwa.js +344 -0
- package/test/organ/faust-ui/index.css +442 -0
- package/test/organ/faust-ui/index.css.map +1 -0
- package/test/organ/faust-ui/index.d.ts +1 -0
- package/test/organ/faust-ui/index.js +3756 -0
- package/test/organ/faust-ui/index.js.map +1 -0
- package/test/organ/faustwasm/index.d.ts +1705 -0
- package/test/organ/faustwasm/index.js +4773 -0
- package/test/organ/faustwasm/index.js.map +7 -0
- package/test/organ/icon.png +0 -0
- package/test/organ/index.html +76 -0
- package/test/organ/index.js +69 -0
- package/test/organ/manifest.json +17 -0
- package/test/organ/service-worker.js +165 -0
|
@@ -110,7 +110,7 @@ export interface LooseFaustDspFactory {
|
|
|
110
110
|
/** a unique identifier */
|
|
111
111
|
shaKey?: string;
|
|
112
112
|
/** a map of transferable audio buffers for the `soundfile` function */
|
|
113
|
-
soundfiles
|
|
113
|
+
soundfiles?: Record<string, AudioData$1 | null>;
|
|
114
114
|
}
|
|
115
115
|
export interface FaustDspMeta {
|
|
116
116
|
name: string;
|