codecrucible-synth
Version:
Production-Ready AI Development Platform with Multi-Voice Synthesis, Smithery MCP Integration, Enterprise Security, and Zero-Timeout Reliability
23 lines • 716 B
TypeScript
import { CLIContext } from '../core/cli.js';
export interface ServerOptions {
port: number;
host: string;
cors?: boolean;
auth?: {
enabled: boolean;
token?: string;
};
}
export interface ServerModeInterface {
startServerMode(context: CLIContext, options: ServerOptions): Promise<void>;
}
/**
* Server Mode for IDE Integration
*
* Provides HTTP and WebSocket APIs for IDE extensions and external tools
* Compatible with VS Code, JetBrains IDEs, and other development environments
*/
export declare class ServerMode implements ServerModeInterface {
startServerMode(context: CLIContext, options: ServerOptions): Promise<void>;
}
//# sourceMappingURL=server-mode.d.ts.map