mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-08 15:55:15 +01:00
vscode.d.ts make column argument deprecated
This commit is contained in:
Vendored
+2
-2
@@ -2420,10 +2420,10 @@ declare namespace vscode {
|
||||
|
||||
/**
|
||||
* Reveal this channel in the UI.
|
||||
*
|
||||
* @param column @deprecated **This argument is deprecated.** The column in which to show the channel, default in [one](#ViewColumn.One).
|
||||
* @param preserveFocus When `true` the channel will not take focus.
|
||||
*/
|
||||
show(preserveFocus?: boolean): void;
|
||||
show(column?: ViewColumn, preserveFocus?: boolean): void;
|
||||
|
||||
/**
|
||||
* Hide this channel from the UI.
|
||||
|
||||
@@ -47,7 +47,7 @@ export class ExtHostOutputChannel implements vscode.OutputChannel {
|
||||
this._proxy.clear(this._name);
|
||||
}
|
||||
|
||||
show(preserveFocus?: boolean): void {
|
||||
show(column?: vscode.ViewColumn, preserveFocus?: boolean): void {
|
||||
this._proxy.reveal(this._name, preserveFocus);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user