(items: string[], _options?: QuickPickOptions)
| 134 | } |
| 135 | |
| 136 | showQuickPick(items: string[], _options?: QuickPickOptions): Thenable<string | undefined> { |
| 137 | // Return first item for CLI |
| 138 | return Promise.resolve(items[0]) |
| 139 | } |
| 140 | |
| 141 | showInputBox(_options?: InputBoxOptions): Thenable<string | undefined> { |
| 142 | // Return empty string for CLI |