From 6dcfe5c46e80449dbf91356f9fd767e4c00bc16a Mon Sep 17 00:00:00 2001 From: Tyler Leonhardt Date: Fri, 4 Feb 2022 16:07:54 -0800 Subject: [PATCH] ensure interface in extHost doesn't have any functions --- src/vs/workbench/api/common/extHost.protocol.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/api/common/extHost.protocol.ts b/src/vs/workbench/api/common/extHost.protocol.ts index 333cf65f9ef..eae2a8dcd0e 100644 --- a/src/vs/workbench/api/common/extHost.protocol.ts +++ b/src/vs/workbench/api/common/extHost.protocol.ts @@ -478,8 +478,16 @@ export interface MainThreadTerminalServiceShape extends IDisposable { } export type TransferQuickPickItemOrSeparator = TransferQuickPickItem | quickInput.IQuickPickSeparator; -export interface TransferQuickPickItem extends quickInput.IQuickPickItem { +export interface TransferQuickPickItem { handle: number; + + // shared properties from IQuickPickItem + type?: 'item'; + label: string; + description?: string; + detail?: string; + picked?: boolean; + alwaysShow?: boolean; buttons?: TransferQuickInputButton[]; }