mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
export interface CrawlingStatus {
|
|
process_id: number;
|
|
started_timestamp: Date;
|
|
combinations_to_crawl: number;
|
|
successful_crawls: number;
|
|
failed_crawls: number;
|
|
}
|