MCPcopy Create free account
hub / github.com/APKLab/APKLab / showArgsQuickPick

Function showArgsQuickPick

src/interface.ts:22–33  ·  view source on GitHub ↗
(
        items: QuickPickItem[],
        placeHolder: string,
    )

Source from the content-addressed store, hash-verified

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.

Callers 2

openApkFileFunction · 0.85
rebuildAPKFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected