2026-04-03 18:38:22 +02:00
|
|
|
// 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';
|
2026-04-03 19:19:32 +02:00
|
|
|
|
|
|
|
|
// Effect module implementations
|
|
|
|
|
export { DelayModule } from './modules/delay-module.js';
|
|
|
|
|
export { SaturationModule } from './modules/saturation-module.js';
|
|
|
|
|
export { MasterModule } from './modules/master-module.js';
|