| 16 | * (e.g. from OpenClaw, custom scrapers, paid APIs). |
| 17 | */ |
| 18 | export interface RadarSource { |
| 19 | readonly name: string; |
| 20 | fetch(): Promise<PlatformRankings>; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Wraps raw natural language text as a radar source. |
no outgoing calls
no test coverage detected