memlnaut-nisps/playground/js/eoc/index.js
w1n5t0n a9e2b5a8f9 feat(playground/eoc): Delay + Saturation + Master Bus modules (meml-2sl, meml-2zm)
Faust DSP sources, compiled WASM + JSON descriptors, AudioWorklet processors,
and EOCModule subclasses for all three effects.
2026-04-03 18:19:32 +01:00

12 lines
497 B
JavaScript

// eoc/index.js — barrel re-export for the End-of-Chain effects system.
//
// Import from here to get the full EOC API:
// import { EOCModule, EOCChain } from './eoc/index.js';
export { EOCModule } from './eoc-module.js';
export { EOCChain } from './eoc-chain.js';
// Effect module implementations
export { DelayModule } from './modules/delay-module.js';
export { SaturationModule } from './modules/saturation-module.js';
export { MasterModule } from './modules/master-module.js';