(_options?: InputBoxOptions)
| 139 | } |
| 140 | |
| 141 | showInputBox(_options?: InputBoxOptions): Thenable<string | undefined> { |
| 142 | // Return empty string for CLI |
| 143 | return Promise.resolve("") |
| 144 | } |
| 145 | |
| 146 | showOpenDialog(_options?: OpenDialogOptions): Thenable<Uri[] | undefined> { |
| 147 | // Return empty array for CLI |
no outgoing calls
no test coverage detected