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:
Tyler James Leonhardt
2021-03-18 13:06:06 -07:00
committed by GitHub
parent 31a9b8f815
commit 89d8eed14f
6 changed files with 41 additions and 5 deletions

View File

@@ -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;