mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-09 10:42:28 +01:00
* Reduce chat provider usage * Clear out IChat props * Delete interactive session provider API * Totally remove static chat provider registration * Clean up onDidRegisterProvider events * Remove provider ID references from model * Eliminate many 'providerId' references * Simplify view registration * Clean up participant-specific actions * Delete getProviderInfos * Rename context key * Fix tests * Fix action label * Fix view title * Fix test * Fix test * Fix integration test * Remove more providerId * Add API stub to make this compatible with the existing Copilot Chat
18 lines
686 B
TypeScript
18 lines
686 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 TabInputChat {
|
|
constructor();
|
|
}
|
|
|
|
export interface Tab {
|
|
readonly input: TabInputText | TabInputTextDiff | TabInputCustom | TabInputWebview | TabInputNotebook | TabInputNotebookDiff | TabInputTerminal | TabInputChat | unknown;
|
|
}
|
|
}
|