/** * SequentialChain * * Executes chains in sequence * * @module src/chains/sequential-chain.js */ export class SequentialChain { constructor(options = {}) { // TODO: Implement constructor throw new Error('SequentialChain not yet implemented'); } // TODO: Add methods } export default SequentialChain;