(
items: QuickPickItem[],
placeHolder: string,
)
| 20 | * @returns string[] of the label for selected QuickPickItem[]. |
| 21 | */ |
| 22 | export async function showArgsQuickPick( |
| 23 | items: QuickPickItem[], |
| 24 | placeHolder: string, |
| 25 | ): Promise<QuickPickItem[] | undefined> { |
| 26 | return await window.showQuickPick(items, { |
| 27 | placeHolder: placeHolder, |
| 28 | canPickMany: true, |
| 29 | matchOnDetail: true, |
| 30 | matchOnDescription: true, |
| 31 | ignoreFocusOut: true, |
| 32 | }); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Show a APK file chooser window and decompile that APK. |
no outgoing calls
no test coverage detected