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

22 lines 608 B
/** * 🏆 Score Header Display - Always visible at top * Shows current score + birth score in a clean box */ export interface ScoreData { currentScore: number; birthScore?: number; aiPredictive?: number; dna?: { birthDNA?: number; currentWeight?: number; }; } /** * Generate the score header box (always shown unless --quiet) */ export declare function generateScoreHeader(data: ScoreData): string; /** * Minimal score line (for when art is disabled) */ export declare function generateScoreLine(data: ScoreData): string; //# sourceMappingURL=score-header.d.ts.map