UNPKG

vibe-coder-mcp

Version:

Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.

25 lines 829 B
import { CleanupResult } from './outputCleaner.js'; import { CodeMapGeneratorConfig } from '../types.js'; export interface BackgroundCleanupJobOptions { cleanupInterval?: number; cleanupOnStartup?: boolean; cleanupOnShutdown?: boolean; } export declare class BackgroundCleanupJob { private options; private outputCleaner; private timer; private isRunning; private lastRunTime; private lastResult; private static readonly DEFAULT_OPTIONS; constructor(config: CodeMapGeneratorConfig, options?: BackgroundCleanupJobOptions); start(): void; stop(): void; runCleanup(): Promise<CleanupResult>; getLastRunTime(): number; getLastResult(): CleanupResult | null; isCleanupRunning(): boolean; isStarted(): boolean; } //# sourceMappingURL=backgroundCleanupJob.d.ts.map