(
promptDetails: IShowInputPromptRequestArgs,
)
| 129 | } |
| 130 | |
| 131 | async function showInputPrompt( |
| 132 | promptDetails: IShowInputPromptRequestArgs, |
| 133 | ): Promise<IShowInputPromptResponseBody> { |
| 134 | const responseText = await vscode.window.showInputBox({ |
| 135 | placeHolder: promptDetails.name + ": ", |
| 136 | }); |
| 137 | return onInputEntered(responseText); |
| 138 | } |
| 139 | |
| 140 | function onItemsSelected( |
| 141 | chosenItems: ICheckboxQuickPickItem[] | undefined, |
no test coverage detected