UNPKG

faf-cli

Version:

😽 TURBO-CAT: The Rapid Catalytic Converter • Project DNA ✨ for ANY AI • Fully Integrated with React, Next.js, Svelte, TypeScript, Vite & n8n • FREE FOREVER • 10,000+ developers • Championship Edition

29 lines • 877 B
/** * 🧡 Trust Cache System - Real-time AI Verification Integration * Caches AI verification results for instant Trust Dashboard updates */ export interface CachedVerificationResult { fafPath: string; timestamp: number; aiCompatibilityScore: number; verificationResults: { claude: number; chatgpt: number; gemini: number; average: number; }; allPassed: boolean; } /** * Save verification results to cache */ export declare function saveTrustCache(fafPath: string, results: any[]): Promise<void>; /** * Get cached verification results */ export declare function getTrustCache(fafPath: string): Promise<CachedVerificationResult | null>; /** * Clear trust cache for a specific file or all files */ export declare function clearTrustCache(fafPath?: string): Promise<void>; //# sourceMappingURL=trust-cache.d.ts.map