| 73 | |
| 74 | // Scraping Result Types |
| 75 | export interface ScrapingResult { |
| 76 | url: string; |
| 77 | success: boolean; |
| 78 | data: Record<string, any>; |
| 79 | error?: string; |
| 80 | } |
| 81 | |
| 82 | // User Types |
| 83 | export interface User { |
nothing calls this directly
no outgoing calls
no test coverage detected