Skip to content

Commit

Permalink
inline IRemoteConsoleLog-type, #70319
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Mar 19, 2019
1 parent a237013 commit 297a6be
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/vs/workbench/api/node/extHost.protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ import * as vscode from 'vscode';
import { IMarkdownString } from 'vs/base/common/htmlContent';
import { ResolvedAuthority } from 'vs/platform/remote/common/remoteAuthorityResolver';
import { ExtensionIdentifier, IExtensionDescription } from 'vs/platform/extensions/common/extensions';
import { IRemoteConsoleLog } from 'vs/base/node/console';
import * as codeInset from 'vs/workbench/contrib/codeinset/common/codeInset';
import * as callHierarchy from 'vs/workbench/contrib/callHierarchy/common/callHierarchy';

Expand Down Expand Up @@ -256,7 +255,11 @@ export interface MainThreadErrorsShape extends IDisposable {
}

export interface MainThreadConsoleShape extends IDisposable {
$logExtensionHostMessage(msg: IRemoteConsoleLog): void;
$logExtensionHostMessage(msg: {
type: string;
severity: string;
arguments: string;
}): void;
}

export interface ISerializedRegExp {
Expand Down

0 comments on commit 297a6be

Please sign in to comment.