| 3269 | * A Thread |
| 3270 | */ |
| 3271 | export interface Thread { |
| 3272 | /** |
| 3273 | * Unique identifier for the thread. |
| 3274 | */ |
| 3275 | id: integer; |
| 3276 | |
| 3277 | /** |
| 3278 | * A name of the thread. |
| 3279 | */ |
| 3280 | name: string; |
| 3281 | } |
| 3282 | |
| 3283 | /** |
| 3284 | * A StepInTarget can be used in the 'stepIn' request and determines into which single target the stepIn request should step. |
no outgoing calls
no test coverage detected