Skip to content

Commit cc907b8

Browse files
committed
Fix import
1 parent 85780d0 commit cc907b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/api/common/extHost.protocol.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import { ChatSessionContent } from 'vscode';
76
import { VSBuffer } from '../../../base/common/buffer.js';
87
import { CancellationToken } from '../../../base/common/cancellation.js';
98
import { IRemoteConsoleLog } from '../../../base/common/console.js';
@@ -59,6 +58,7 @@ import { ICodeMapperRequest, ICodeMapperResult } from '../../contrib/chat/common
5958
import { IChatRelatedFile, IChatRelatedFileProviderMetadata as IChatRelatedFilesProviderMetadata, IChatRequestDraft } from '../../contrib/chat/common/chatEditingService.js';
6059
import { IChatProgressHistoryResponseContent } from '../../contrib/chat/common/chatModel.js';
6160
import { IChatContentInlineReference, IChatFollowup, IChatNotebookEdit, IChatProgress, IChatTask, IChatTaskDto, IChatUserActionEvent, IChatVoteAction } from '../../contrib/chat/common/chatService.js';
61+
import { IChatSessionContent } from '../../contrib/chat/common/chatSessionsService.js';
6262
import { IChatRequestVariableValue } from '../../contrib/chat/common/chatVariables.js';
6363
import { ChatAgentLocation } from '../../contrib/chat/common/constants.js';
6464
import { IChatMessage, IChatResponseFragment, ILanguageModelChatMetadata, ILanguageModelChatSelector, ILanguageModelsChangeEvent } from '../../contrib/chat/common/languageModels.js';
@@ -3107,7 +3107,7 @@ export interface MainThreadChatSessionsShape extends IDisposable {
31073107
}
31083108

31093109
export interface ExtHostChatSessionsShape {
3110-
$provideChatSessions(handle: number, token: CancellationToken): Promise<ChatSessionContent[]>;
3110+
$provideChatSessions(handle: number, token: CancellationToken): Promise<IChatSessionContent[]>;
31113111
}
31123112

31133113
// --- proxy identifiers

0 commit comments

Comments
 (0)