(runtime: AgentDeviceRuntime)
| 66 | }; |
| 67 | |
| 68 | export function bindSystemCommands(runtime: AgentDeviceRuntime): BoundSystemCommands { |
| 69 | return { |
| 70 | back: (options) => systemCommands.back(runtime, options), |
| 71 | home: (options) => systemCommands.home(runtime, options), |
| 72 | rotate: (options) => systemCommands.rotate(runtime, options), |
| 73 | keyboard: (options) => systemCommands.keyboard(runtime, options), |
| 74 | clipboard: (options) => systemCommands.clipboard(runtime, options), |
| 75 | settings: (options) => systemCommands.settings(runtime, options), |
| 76 | alert: (options) => systemCommands.alert(runtime, options), |
| 77 | appSwitcher: (options) => systemCommands.appSwitcher(runtime, options), |
| 78 | }; |
| 79 | } |
no test coverage detected