(
items: ICheckboxQuickPickItem[],
)
| 32 | } |
| 33 | |
| 34 | function getQuickPickItems( |
| 35 | items: ICheckboxQuickPickItem[], |
| 36 | ): vscode.QuickPickItem[] { |
| 37 | const quickPickItems: vscode.QuickPickItem[] = []; |
| 38 | quickPickItems.push({ label: confirmItemLabel, description: "" }); |
| 39 | |
| 40 | for (const item of items) { |
| 41 | quickPickItems.push({ |
| 42 | label: convertToCheckBox(item), |
| 43 | description: item.description, |
| 44 | }); |
| 45 | } |
| 46 | |
| 47 | return quickPickItems; |
| 48 | } |
| 49 | |
| 50 | async function showInner( |
| 51 | items: ICheckboxQuickPickItem[], |
no test coverage detected