(item: ICheckboxQuickPickItem)
| 89 | } |
| 90 | |
| 91 | function toggleSelection(item: ICheckboxQuickPickItem): void { |
| 92 | item.isSelected = !item.isSelected; |
| 93 | } |
| 94 | |
| 95 | function convertToCheckBox(item: ICheckboxQuickPickItem): string { |
| 96 | return `${item.isSelected ? checkedPrefix : uncheckedPrefix} ${item.label}`; |