Path: blob/main/src/vscode-dts/vscode.proposed.chatTab.d.ts
3290 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45declare module 'vscode' {6/**7* The tab represents an interactive window.8*/9export class TabInputChat {10constructor();11}1213export interface Tab {14readonly input: TabInputText | TabInputTextDiff | TabInputCustom | TabInputWebview | TabInputNotebook | TabInputNotebookDiff | TabInputTerminal | TabInputChat | unknown;15}16}171819