mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
Allow extension authors to set the title of a QuickPick/InputBox in Options (#119144)
* plumb title through * add title to BaseTransferQuickInput
This commit is contained in:
committed by
GitHub
parent
31a9b8f815
commit
89d8eed14f
@@ -505,6 +505,8 @@ export interface BaseTransferQuickInput {
|
||||
|
||||
id: number;
|
||||
|
||||
title?: string;
|
||||
|
||||
type?: 'quickPick' | 'inputBox';
|
||||
|
||||
enabled?: boolean;
|
||||
@@ -559,6 +561,7 @@ export interface TransferInputBox extends BaseTransferQuickInput {
|
||||
}
|
||||
|
||||
export interface IInputBoxOptions {
|
||||
title?: string;
|
||||
value?: string;
|
||||
valueSelection?: [number, number];
|
||||
prompt?: string;
|
||||
|
||||
Reference in New Issue
Block a user