fix(client): try to fix the lint issues on the debug page
This commit is contained in:
parent
f7018575d8
commit
8deca105b1
|
|
@ -62,6 +62,18 @@ interface DebugInfo {
|
||||||
failed_document_info?: any;
|
failed_document_info?: any;
|
||||||
user_settings: any;
|
user_settings: any;
|
||||||
debug_timestamp: string;
|
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 = () => {
|
const DebugPage: React.FC = () => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue