MCPcopy Index your code
hub / github.com/PowerShell/vscode-powershell / showCheckboxQuickPick

Function showCheckboxQuickPick

src/controls/checkboxQuickPick.ts:26–32  ·  view source on GitHub ↗
(
    items: ICheckboxQuickPickItem[],
    options: ICheckboxQuickPickOptions = defaultOptions,
)

Source from the content-addressed store, hash-verified

24};
25
26export async function showCheckboxQuickPick(
27 items: ICheckboxQuickPickItem[],
28 options: ICheckboxQuickPickOptions = defaultOptions,
29): Promise<ICheckboxQuickPickItem[] | undefined> {
30 const selectedItem = await showInner(items, options);
31 return selectedItem !== undefined ? items : undefined;
32}
33
34function getQuickPickItems(
35 items: ICheckboxQuickPickItem[],

Callers 1

showChoicePromptFunction · 0.90

Calls 1

showInnerFunction · 0.85

Tested by

no test coverage detected