@vfarcic/dot-ai
Version:
AI-powered development productivity platform that enhances software development workflows through intelligent automation and AI-driven assistance
19 lines • 680 B
TypeScript
/**
* CRD Availability Check with Global Caching
*
* Checks once per MCP server lifecycle if Solution CRD is available,
* then caches the result globally to avoid repeated cluster queries.
*
* PRD #359: Uses unified plugin registry for K8s operations
*/
/**
* Helper function for checking CRD availability
* Use this function throughout the codebase
* PRD #359: No longer requires pluginManager parameter - uses unified registry
*/
export declare function isSolutionCRDAvailable(): Promise<boolean>;
/**
* Reset CRD availability cache (primarily for testing)
*/
export declare function resetCRDAvailabilityCache(): void;
//# sourceMappingURL=crd-availability.d.ts.map