memlnaut-nisps/playground/js/eoc/index.js

13 lines
497 B
JavaScript
Raw Normal View History

// 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';