vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
16 lines • 447 B
TypeScript
export declare class MultilineInput {
private buffer;
private isMultiline;
private startDelimiter;
private endDelimiter;
isStarting(line: string): boolean;
isEnding(line: string): boolean;
startMultiline(): void;
addLine(line: string): boolean;
getContent(): string;
isActive(): boolean;
reset(): void;
getPrompt(): string;
getCurrentBuffer(): string[];
}
//# sourceMappingURL=multiline.d.ts.map