| 60 | } |
| 61 | |
| 62 | export interface SystemData { |
| 63 | time: number; |
| 64 | satellites: Satellite[]; |
| 65 | ground_stations: GroundStation[]; |
| 66 | geo_relays: GeoRelay[]; |
| 67 | requests: TransmissionRequest[]; |
| 68 | stats: Record<string, unknown>; |
| 69 | } |
| 70 | |
| 71 | export interface DecisionMetrics { |
| 72 | acceptance_rate: number; |
nothing calls this directly
no outgoing calls
no test coverage detected