(runtime: AgentDeviceRuntime)
| 89 | }; |
| 90 | |
| 91 | export function bindCommands(runtime: AgentDeviceRuntime): BoundAgentDeviceCommands { |
| 92 | return { |
| 93 | capture: bindCaptureCommands(runtime), |
| 94 | selectors: bindSelectorCommands(runtime), |
| 95 | interactions: bindInteractionCommands(runtime), |
| 96 | system: bindSystemCommands(runtime), |
| 97 | apps: bindAppCommands(runtime), |
| 98 | admin: bindAdminCommands(runtime), |
| 99 | recording: bindRecordingCommands(runtime), |
| 100 | observability: bindObservabilityCommands(runtime), |
| 101 | }; |
| 102 | } |
no test coverage detected