( runtime: Pick<AgentDeviceRuntime, 'signal'>, options: CommandContext, )
| 358 | } |
| 359 | |
| 360 | function toAppBackendContext( |
| 361 | runtime: Pick<AgentDeviceRuntime, 'signal'>, |
| 362 | options: CommandContext, |
| 363 | ): BackendCommandContext { |
| 364 | return { |
| 365 | session: options.session, |
| 366 | requestId: options.requestId, |
| 367 | signal: options.signal ?? runtime.signal, |
| 368 | metadata: options.metadata, |
| 369 | }; |
| 370 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…