Function: showQuickPick()
Call Signature
showQuickPick(
items
,options
,token
?):Promise
<string
[] |undefined
>
Shows a selection list allowing multiple selections.
Parameters
items
An array of strings, or a promise that resolves to an array of strings.
readonly string
[] | Promise
<readonly string
[]>
options
QuickPickOptions
& object
Configures the behavior of the selection list.
token?
A token that can be used to signal cancellation.
Returns
Promise
<string
[] | undefined
>
A promise that resolves to the selected items or undefined
.
Defined in
packages/extension-api/src/extension-api.d.ts:2277
Call Signature
showQuickPick(
items
,options
?,token
?):Promise
<string
|undefined
>
Shows a selection list.
Parameters
items
An array of strings, or a promise that resolves to an array of strings.
readonly string
[] | Promise
<readonly string
[]>
options?
Configures the behavior of the selection list.
token?
A token that can be used to signal cancellation.
Returns
Promise
<string
| undefined
>
A promise that resolves to the selection or undefined
.
Defined in
packages/extension-api/src/extension-api.d.ts:2291
Call Signature
showQuickPick<
T
>(items
,options
,token
?):Promise
<T
[] |undefined
>
Shows a selection list allowing multiple selections.
Type Parameters
• T extends QuickPickItem
Parameters
items
An array of items, or a promise that resolves to an array of items.
readonly T
[] | Promise
<readonly T
[]>
options
QuickPickOptions
& object
Configures the behavior of the selection list.
token?
A token that can be used to signal cancellation.
Returns
Promise
<T
[] | undefined
>
A promise that resolves to the selected items or undefined
.
Defined in
packages/extension-api/src/extension-api.d.ts:2305
Call Signature
showQuickPick<
T
>(items
,options
?,token
?):Promise
<T
|undefined
>
Shows a selection list.
Type Parameters
• T extends QuickPickItem
Parameters
items
An array of items, or a promise that resolves to an array of items.
readonly T
[] | Promise
<readonly T
[]>
options?
Configures the behavior of the selection list.
token?
A token that can be used to signal cancellation.
Returns
Promise
<T
| undefined
>
A promise that resolves to the selected item or undefined
.