mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
ensure interface in extHost doesn't have any functions
This commit is contained in:
@@ -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[];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user