| 7 | } |
| 8 | |
| 9 | export interface ApiError { |
| 10 | status: 'error'; |
| 11 | code: string; |
| 12 | message: string; |
| 13 | request_id?: string; |
| 14 | reject_reason?: string; |
| 15 | } |
| 16 | |
| 17 | export interface Satellite { |
| 18 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected