Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/common/comments.ts
3291 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import { MarshalledId } from '../../base/common/marshallingIds.js';
7
import { CommentThread } from '../../editor/common/languages.js';
8
9
export interface MarshalledCommentThread {
10
$mid: MarshalledId.CommentThread;
11
commentControlHandle: number;
12
commentThreadHandle: number;
13
}
14
15
export interface MarshalledCommentThreadInternal extends MarshalledCommentThread {
16
thread: CommentThread;
17
}
18
19