| 2 | import { Button, InstalledApp, Orientation, Robot, ScreenElement, ScreenSize, SwipeDirection } from "./robot"; |
| 3 | |
| 4 | interface InstalledAppsResponse { |
| 5 | status: "ok", |
| 6 | data: Array<{ |
| 7 | packageName: string; |
| 8 | appName?: string; // ios |
| 9 | version?: string; // ios |
| 10 | }>; |
| 11 | } |
| 12 | |
| 13 | interface DeviceInfoResponse { |
| 14 | status: "ok", |
nothing calls this directly
no outgoing calls
no test coverage detected