API: expose debug console; fixes #36753

This commit is contained in:
Andre Weinand
2017-10-24 13:03:05 +02:00
parent fa4c5561c9
commit af809a59db
5 changed files with 62 additions and 2 deletions

View File

@@ -404,6 +404,7 @@ export interface MainThreadDebugServiceShape extends IDisposable {
$unregisterDebugConfigurationProvider(handle: number): TPromise<any>;
$startDebugging(folder: URI | undefined, nameOrConfig: string | vscode.DebugConfiguration): TPromise<boolean>;
$customDebugAdapterRequest(id: DebugSessionUUID, command: string, args: any): TPromise<any>;
$appendDebugConsole(value: string): TPromise<any>;
}
export interface MainThreadCredentialsShape extends IDisposable {