fix(client): try to fix the lint issues on the debug page

This commit is contained in:
perf3ct 2025-07-01 01:05:40 +00:00
parent f7018575d8
commit 8deca105b1
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232
1 changed files with 12 additions and 0 deletions

View File

@ -62,6 +62,18 @@ interface DebugInfo {
failed_document_info?: any;
user_settings: any;
debug_timestamp: string;
detailed_processing_logs?: any[];
file_analysis?: {
file_size: number;
mime_type: string;
is_text_file: boolean;
is_image_file: boolean;
character_count: number;
word_count: number;
estimated_processing_time: number;
complexity_score: number;
[key: string]: any;
};
}
const DebugPage: React.FC = () => {