| 23 | const FIRECRAWL_API_KEY = "fc-YOUR_API_KEY"; // Replace with your actual API key |
| 24 | |
| 25 | interface FormData { |
| 26 | url: string; |
| 27 | crawlSubPages: boolean; |
| 28 | limit: string; |
| 29 | maxDepth: string; |
| 30 | excludePaths: string; |
| 31 | includePaths: string; |
| 32 | extractMainContent: boolean; |
| 33 | } |
| 34 | |
| 35 | interface CrawlerOptions { |
| 36 | includes?: string[]; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…