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[]; }