(prompt: string, value?: string)
| 256 | export const showError = (error: string) => vscode.window.showErrorMessage(`${error}`); |
| 257 | |
| 258 | export const getUserInput = async (prompt: string, value?: string) => { |
| 259 | return await vscode.window.showInputBox({ |
| 260 | prompt, |
| 261 | value, |
| 262 | }); |
| 263 | }; |
| 264 | |
| 265 | export const getPickableOptions = async <T extends vscode.QuickPickItem>( |
| 266 | options: T[], |
nothing calls this directly
no outgoing calls
no test coverage detected