codecrucible-synth
Version:
Production-Ready AI Development Platform with Multi-Voice Synthesis, Smithery MCP Integration, Enterprise Security, and Zero-Timeout Reliability
14 lines • 673 B
JavaScript
/**
* Client Interface Abstractions
* Breaking circular dependencies through interface segregation
*
* Living Spiral Council Applied:
* - Architect: Clear separation between interface and implementation
* - Maintainer: Stable contracts for loose coupling
* - Security Guardian: Controlled access through well-defined interfaces
* - Performance Engineer: Minimal interface surface area for efficiency
*/
// Import and re-export types from the existing types module to ensure compatibility
import { ProjectContext, ModelRequest, ModelResponse } from '../types.js';
export { ProjectContext, ModelRequest, ModelResponse };
//# sourceMappingURL=client-interfaces.js.map