(
id: string | undefined,
command: string,
opts?: { timeoutMs?: number },
)
| 200 | } |
| 201 | |
| 202 | async runCommand( |
| 203 | id: string | undefined, |
| 204 | command: string, |
| 205 | opts?: { timeoutMs?: number }, |
| 206 | ): Promise<string> { |
| 207 | const session = this.requireSession(id); |
| 208 | const result = await session.backend.runCommand(command, opts); |
| 209 | this.touch(session.info.id); |
| 210 | return result; |
| 211 | } |
| 212 | |
| 213 | async resumeSession(id?: string, opts?: { threadId?: number }): Promise<void> { |
| 214 | const session = this.requireSession(id); |
nothing calls this directly
no test coverage detected