mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
add cancellation support for showInput and showQuickPick, #9377
This commit is contained in:
@@ -153,7 +153,7 @@ export abstract class MainThreadQuickOpenShape {
|
||||
$show(options: IPickOptions): Thenable<number> { throw ni(); }
|
||||
$setItems(items: MyQuickPickItems[]): Thenable<any> { throw ni(); }
|
||||
$setError(error: Error): Thenable<any> { throw ni(); }
|
||||
$input(options: vscode.InputBoxOptions, validateInput: boolean): Thenable<string> { throw ni(); }
|
||||
$input(options: vscode.InputBoxOptions, validateInput: boolean): TPromise<string> { throw ni(); }
|
||||
}
|
||||
|
||||
export abstract class MainThreadStatusBarShape {
|
||||
|
||||
Reference in New Issue
Block a user