| 1 | export interface CrawlerConfig { |
| 2 | platform: string |
| 3 | login_type: string |
| 4 | crawler_type: string |
| 5 | keywords: string |
| 6 | specified_ids: string // 详情模式下的帖子/视频ID |
| 7 | creator_ids: string // 创作者模式下的创作者ID |
| 8 | start_page: number |
| 9 | enable_comments: boolean |
| 10 | enable_sub_comments: boolean |
| 11 | save_option: string |
| 12 | cookies: string |
| 13 | headless: boolean |
| 14 | } |
| 15 | |
| 16 | export interface CrawlerStatus { |
| 17 | status: 'idle' | 'running' | 'stopping' | 'error' |
nothing calls this directly
no outgoing calls
no test coverage detected