UNPKG

cdk-insights

Version:

AWS CDK security and cost analysis tool with AI-powered insights

27 lines (26 loc) 610 B
/** * Clear all cached analysis results */ export declare const clearCache: () => void; /** * Get cache statistics */ export declare const getCacheStats: () => { cacheDir: string; cacheFileExists: boolean; cacheDirExists: boolean; cacheSize?: number; }; /** * Create cache directory if it doesn't exist */ export declare const ensureCacheDir: () => void; /** * Get the cache directory path */ export declare const getCacheDir: () => string; /** * Check if cache is being used */ export declare const isCacheEnabled: () => boolean; export declare const clearAnalysisCache: () => void;