From b2a7c9aac56f8e3321118685496be283ca450a29 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 5 Dec 2022 15:15:47 +0100 Subject: [PATCH] don't export TextEditorEdit (#168080) https://github.com/microsoft/vscode/issues/164940 --- src/vs/workbench/api/common/extHostTextEditor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/common/extHostTextEditor.ts b/src/vs/workbench/api/common/extHostTextEditor.ts index 316e0fe076acc..6486d953fb210 100644 --- a/src/vs/workbench/api/common/extHostTextEditor.ts +++ b/src/vs/workbench/api/common/extHostTextEditor.ts @@ -50,7 +50,7 @@ export interface IEditData { undoStopAfter: boolean; } -export class TextEditorEdit { +class TextEditorEdit { private readonly _document: vscode.TextDocument; private readonly _documentVersionId: number;