|
3 | 3 | * Licensed under the MIT License. See License.txt in the project root for license information.
|
4 | 4 | *--------------------------------------------------------------------------------------------*/
|
5 | 5 |
|
6 |
| -import { ChatSessionContent } from 'vscode'; |
7 | 6 | import { VSBuffer } from '../../../base/common/buffer.js';
|
8 | 7 | import { CancellationToken } from '../../../base/common/cancellation.js';
|
9 | 8 | import { IRemoteConsoleLog } from '../../../base/common/console.js';
|
@@ -59,6 +58,7 @@ import { ICodeMapperRequest, ICodeMapperResult } from '../../contrib/chat/common
|
59 | 58 | import { IChatRelatedFile, IChatRelatedFileProviderMetadata as IChatRelatedFilesProviderMetadata, IChatRequestDraft } from '../../contrib/chat/common/chatEditingService.js';
|
60 | 59 | import { IChatProgressHistoryResponseContent } from '../../contrib/chat/common/chatModel.js';
|
61 | 60 | import { IChatContentInlineReference, IChatFollowup, IChatNotebookEdit, IChatProgress, IChatTask, IChatTaskDto, IChatUserActionEvent, IChatVoteAction } from '../../contrib/chat/common/chatService.js';
|
| 61 | +import { IChatSessionContent } from '../../contrib/chat/common/chatSessionsService.js'; |
62 | 62 | import { IChatRequestVariableValue } from '../../contrib/chat/common/chatVariables.js';
|
63 | 63 | import { ChatAgentLocation } from '../../contrib/chat/common/constants.js';
|
64 | 64 | import { IChatMessage, IChatResponseFragment, ILanguageModelChatMetadata, ILanguageModelChatSelector, ILanguageModelsChangeEvent } from '../../contrib/chat/common/languageModels.js';
|
@@ -3107,7 +3107,7 @@ export interface MainThreadChatSessionsShape extends IDisposable {
|
3107 | 3107 | }
|
3108 | 3108 |
|
3109 | 3109 | export interface ExtHostChatSessionsShape {
|
3110 |
| - $provideChatSessions(handle: number, token: CancellationToken): Promise<ChatSessionContent[]>; |
| 3110 | + $provideChatSessions(handle: number, token: CancellationToken): Promise<IChatSessionContent[]>; |
3111 | 3111 | }
|
3112 | 3112 |
|
3113 | 3113 | // --- proxy identifiers
|
|
0 commit comments