(udid: string)
| 80 | } |
| 81 | |
| 82 | export function toggleSimulatorAppearance(udid: string) { |
| 83 | return apiRequest<{ ok: boolean }>( |
| 84 | `/api/simulators/${encodeURIComponent(udid)}/action`, |
| 85 | { |
| 86 | method: "POST", |
| 87 | body: JSON.stringify({ action: "toggleAppearance" }), |
| 88 | }, |
| 89 | ); |
| 90 | } |
| 91 | |
| 92 | export function uploadSimulatorApp( |
| 93 | udid: string, |
nothing calls this directly
no test coverage detected