(
items: ICheckboxQuickPickItem[],
options: ICheckboxQuickPickOptions = defaultOptions,
)
| 24 | }; |
| 25 | |
| 26 | export 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 | |
| 34 | function getQuickPickItems( |
| 35 | items: ICheckboxQuickPickItem[], |
no test coverage detected