(callback: (message: string) => void)
| 366 | |
| 367 | // TODO: This API doesn't make it obvious you can only have one subscriber. |
| 368 | public onLogging(callback: (message: string) => void) { |
| 369 | this.logging = callback; |
| 370 | } |
| 371 | |
| 372 | public getVersion(): Promise<DebuggerResult> { |
| 373 | return this.callMethod("getVersion"); |