vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
19 lines • 761 B
TypeScript
export interface ResetableSingleton {
resetMethod: string;
getInstance: () => unknown;
description?: string;
}
export declare class SingletonResetManager {
private static registeredSingletons;
private static isTestEnvironment;
static initialize(): void;
static register(name: string, singleton: ResetableSingleton): void;
static resetAll(): Promise<void>;
static resetSingleton(name: string): Promise<boolean>;
private static registerDefaultSingletons;
static getRegisteredSingletons(): string[];
static clearRegistrations(): void;
}
export declare function initializeSingletonResetManager(): void;
export declare function resetAllSingletons(): Promise<void>;
//# sourceMappingURL=singleton-reset-manager.d.ts.map