( options: T[], config?: vscode.QuickPickOptions )
| 263 | }; |
| 264 | |
| 265 | export const getPickableOptions = async <T extends vscode.QuickPickItem>( |
| 266 | options: T[], |
| 267 | config?: vscode.QuickPickOptions |
| 268 | ) => await vscode.window.showQuickPick<T>(options, config); |
| 269 | |
| 270 | export const getMultiplePickableOptions = async <T extends vscode.QuickPickItem>( |
| 271 | options: T[], |
nothing calls this directly
no outgoing calls
no test coverage detected