mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 16:18:58 +01:00
26 lines
941 B
TypeScript
26 lines
941 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
declare module 'vscode' {
|
|
/**
|
|
* The tab represents an interactive window.
|
|
*/
|
|
export class TabInputInteractiveWindow {
|
|
/**
|
|
* The uri of the history notebook in the interactive window.
|
|
*/
|
|
readonly uri: Uri;
|
|
/**
|
|
* The uri of the input box in the interactive window.
|
|
*/
|
|
readonly inputBoxUri: Uri;
|
|
private constructor(uri: Uri, inputBoxUri: Uri);
|
|
}
|
|
|
|
export interface Tab {
|
|
readonly input: TabInputText | TabInputTextDiff | TabInputCustom | TabInputWebview | TabInputNotebook | TabInputNotebookDiff | TabInputTerminal | TabInputInteractiveWindow | unknown;
|
|
}
|
|
}
|