/*---------------------------------------------------------------------------------------------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*--------------------------------------------------------------------------------------------*/45import { MarshalledId } from '../../base/common/marshallingIds.js';6import { CommentThread } from '../../editor/common/languages.js';78export interface MarshalledCommentThread {9$mid: MarshalledId.CommentThread;10commentControlHandle: number;11commentThreadHandle: number;12}1314export interface MarshalledCommentThreadInternal extends MarshalledCommentThread {15thread: CommentThread;16}171819