Resolved conflicts: merged all 6 module imports in eoc-chain-ui.js and index.js. All moduleFactory cases now return real Faust WASM implementations — no stubs remain.
15 lines
708 B
JavaScript
15 lines
708 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 { EQModule } from './modules/eq-module.js';
|
|
export { CompressorModule } from './modules/compressor-module.js';
|
|
export { ReverbModule } from './modules/reverb-module.js';
|
|
export { DelayModule } from './modules/delay-module.js';
|
|
export { SaturationModule } from './modules/saturation-module.js';
|
|
export { MasterModule } from './modules/master-module.js';
|